active questions tagged mcts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:49:49Z http://stackoverflow.com/feeds/tag/mcts http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1845996/mcts-70-431-exam 0 mcts 70-431 exam romilnagrani 2009-12-04T10:01:52Z 2009-12-04T10:21:44Z <p>i wish to give MCTS 70-431 exam which is SQL Server 2005 Implementation &amp; Maintenance. I have not so many days left with me hence i am giving this exam as the exam would be sponsered by my company. If i had much time i would rather go for mcts in .net 3.5.(Web based) My question.</p> <p>if i give mcts 70-431 and i pass. Is it possible for me to give mcts in .net 3.5 also? If yes, what would be my mcts would be considered in? In SQL Server or in .Net 3.5</p> <p>Please provide some useful links along with your answers for better understanding.</p> <p>thanks</p> http://stackoverflow.com/questions/1387832/microsoft-certifications-mcts-core-exam-70-536-is-the-measureup-practice-test 7 Microsoft certifications - MCTS core exam 70-536 - Is the MeasureUp practice test easier or harder than the actual test? MGOwen 2009-09-07T06:32:24Z 2009-11-19T04:32:44Z <p>I'm a fairly experienced (about 4 years) asp.net developer. </p> <p>I failed the MeasureUp practice test for Microsoft certification exam 70-536: TS: Microsoft .NET Framework 2.0 — Application Development Foundation. (That's the actual MeasureUp practice test purchased from their website - I've heard there is a different version of it on the CD that comes with the official book, the 'Self-Paced Training Kit', and that the questions are different).</p> <p>I got 50% (80% is a pass).</p> <p>I have heard the real test is not that hard, and one guy said there were only 40 questions and 180 mins (4.5mins/question). My practice test (in 'certification mode') was 50 questions in 90 minutes (1.8mins/question). I could have scored a few more points with more time. </p> <p>I'd just keep studying until I pass a few times, but my time is running out fast (I need to pass so our company can keep its MS partner status).</p> <p>So I'm wondering, for anyone who has done both, is the MeasureUp test for 70-536 harder or easier than the real exam? </p> <p>(Maybe someone can even post their real score and their last MeasureUp practice score?)</p> <p><strong>Update</strong> Although no-one was able to answer the exact question, everyone provided useful information. I ended up awarding the bounty to the most upvoted answer. I guess I will post an actual answer myself after I do the test. Thanks to all who contributed. </p> <p><strong>Update 2</strong> I am still intending to do this exam (circumstances changed, so haven't yet) and will post about it here...</p> http://stackoverflow.com/questions/1710497/exception-caused-by-appdomain-when-it-shouldnt 3 Exception caused by AppDomain when it shouldn't? Jaapjan 2009-11-10T19:21:32Z 2009-11-11T10:46:43Z <p>I am working on my MCTS and currently studying the AppDomain functionality. But I am running into something unclear. <code>AppDomain</code> should be capturing <code>Exception</code> and allow the domain to safely unload. (With the possible exception of the <code>StackOverflowException</code> as suggested elsewhere)</p> <pre><code>AppDomainSetup setup = new AppDomainSetup(); setup.ApplicationBase = AppDomain.CurrentDomain.BaseDirectory; Evidence adevidence = AppDomain.CurrentDomain.Evidence; domain.UnhandledException += new UnhandledExceptionEventHandler(domain_UnhandledException); AppDomain domain = AppDomain.CreateDomain("MyDomain", adevidence, setup); </code></pre> <p>When I decide to create an instance of the example class in an assembly I created for this purpose I should be getting a safe, restricted Domain which will capture errors that occur and can be safely unloaded. At least this is how I understand it from my study book.</p> <pre><code>var type = (IDoSomeWork) domain.CreateInstanceAndUnwrap("Library1", "Library1.Class1"); type.Run(); </code></pre> <p>This throws an exception however on <code>type.Run()</code> (since I made it that way). But shouldn't the <code>AppDomain</code> capture it safely? Isn't that why we have an <code>AppDomain</code>?</p> <p><strong>UPDATE:</strong></p> <p>As requested, I have included the definition of the <code>Library1.Class1</code>. Also, for clarity, the <code>UnhandledExceptionEventHandler</code> has no influence on capturing the exception and isn't relevant to the question.</p> <pre><code>[Serializable] public class Class1 : MarshalByRefObject, IDoSomeWork { public void Run() { Debug.WriteLine(AppDomain.CurrentDomain.FriendlyName); throw new ApplicationException(String.Format("{0}", this.ToString())); } } </code></pre> <p>I have verified that it runs in <code>MyDomain</code>.</p> http://stackoverflow.com/questions/1645565/which-microsoft-certification-path 1 Which Microsoft certification Path Rahuls 2009-10-29T18:09:06Z 2009-10-29T18:16:54Z <p>I completed ASP.NET 2.0 web development and WPF 3.5 certification. Next I'm planning to do certification in webservices. Which one is best among 529 (distr apps) and 503 (wcf)? Between 2.0 / 3.5 which is best for career growth and jobs?</p> http://stackoverflow.com/questions/12986/microsoft-certification-exams 4 Microsoft Certification Exams Christian Hagelid 2008-08-16T04:15:36Z 2009-10-27T17:07:36Z <p>Not a very 'techy' question but certainly relevant in our field. What are your oppinions on them? Are they valuable or have they lost their meaning with all the readily available cramming / braindump tools out there.</p> <p>I'm curious as both my previous and current employer wants the developers to sit these exams. Although I'm sure they would like developers that are skilled up on the latest techniques and tool-sets, I think that their motivation comes from the partner points that are assiciated with having certified developers on the team.</p> <p>I currently have an <a href="http://www.microsoft.com/learning/mcp/mcts/webapps/default.mspx" rel="nofollow">MCTS: .NET Framework 2.0 Web Applications</a> certification and was planning to take the last exam towards the <a href="http://www.microsoft.com/learning/mcp/mcpd/webdev/default.mspx" rel="nofollow">professional developer</a> title. My issue now is do I take this MCPD exam for the .NET 2.0 track or do I start afresh with the newly released <a href="http://www.microsoft.com/learning/mcp/vstudio/2008/" rel="nofollow">.NET 3.5 exams</a>.</p> <p><strong>Update</strong> : Just found that a <a href="http://beta.stackoverflow.com/questions/7113/is-it-worth-it-to-get-ms-certified#7135" rel="nofollow">similar question</a> has already been asked and answered.</p> http://stackoverflow.com/questions/157278/what-are-the-best-resources-for-preparing-for-a-mcts-exam 8 What are the best resources for preparing for a MCTS exam? chills42 2008-10-01T12:04:32Z 2009-10-13T09:13:07Z <p>I am considering taking the MCTS exam (employer will pay) with the intention of gaining a core understanding of the .NET framework. Also, I plan to take the C# version. What are the best preparation resources. (I am not interested in brain dumps, as my goal is to learn, not just pass)</p> http://stackoverflow.com/questions/395189/are-mcts-certifications-worth-the-bother 2 Are MCTS certifications worth the bother? JohnIdol 2008-12-27T17:30:24Z 2009-10-03T21:14:52Z <p>The question is pretty simple - could MCTS certifications make a difference in my professional career?</p> <p>I am studying for <a href="http://stackoverflow.com/questions/18054/msct-certification-exam-70-536-your-advices">exam 70-536</a>, the book is <strong>painful</strong> but pretty straightforward (I went through the book twice - now I am doing it for the third time on the <a href="http://rads.stackoverflow.com/amzn/click/0735626197" rel="nofollow">new edition</a> supposed to be better) but the test simulation is brutal - you easily get asked stuff that's not in the book and looking around forums etc. people say it's known that <strong>the book is not enough</strong> to pass the exam.</p> <p>Is it worth the bother in your opinion?</p> http://stackoverflow.com/questions/18054/msct-certification-exam-70-536-your-advices 3 MSCT Certification, Exam 70-536, your advices? Philippe 2008-08-20T14:09:10Z 2009-09-29T22:04:02Z <p>At the beginning of the year, I was proposed by my company to take some MS certification exams. Since then, they generously paid for the Self-Paced Training Kit book. I was promised to have some time to study, but the project is running late (a habit around here). Let's face it, I'll have to study on my own time to get this certification.</p> <p>Anyway, my question is simple: what advices do you have in order to study effectively? I'm halfway trough the book, and I feel like I don't remember anything. Especially when the questions are so precise on classes name and parameters...</p> http://stackoverflow.com/questions/7113/is-it-worth-it-to-get-ms-certified 39 Is it worth it to get MS Certified? Lance Fisher 2008-08-10T08:55:40Z 2009-09-22T07:50:18Z <p>How important is it to get a MCPD, MCTS, etc? </p> <p>What is the best way to get certified?</p> http://stackoverflow.com/questions/1368308/mcts-70-433-sql-server-2008-database-development -1 MCTS 70-433 - SQL Server 2008 - Database Development Yuva 2009-09-02T15:11:23Z 2009-09-02T15:24:50Z <p>Hi,</p> <p>MCTS 70-433 - SQL Server 2008 - Database Development</p> <p>Does any one have the preparation kit and any training, Simulation tests, etc</p> <p>Also I want the ebook of "Self paced training kit" for 70-433.</p> <p>Please help me...</p> <p>-Yuva</p> http://stackoverflow.com/questions/1186982/mcts-70-536-braindumps -2 MCTS 70-536 Braindumps [closed] Rogan 2009-07-27T08:02:47Z 2009-08-08T02:34:16Z <p>Where can I find worth while braindumps (questions and answers) for MCTS exam 70-536?</p> http://stackoverflow.com/questions/715864/for-what-kind-of-applications-do-you-use-cas-net-security-features 1 For what kind of applications do you use CAS .net security features? Vegar 2009-04-03T21:51:20Z 2009-06-24T06:29:33Z <p>I'm currently reading for the mcts exam and struggle a little with the chapters on security. How common is it to use the CAS-features? For what kind of application is it used?</p> <p>I can't say that I have missed the opportunities this system provides when developing native applications. Is this kind of security more important for managed applications? </p> http://stackoverflow.com/questions/972360/opinions-mcpd-windows-developer-certification-anybody-who-has-taken-either-t 0 Opinions: MCPD - Windows Developer certification - anybody who has taken either the 070-548 or the 070-563 Pro exams? Yoooder 2009-06-09T20:38:39Z 2009-06-09T20:38:39Z <p>I'm looking for some insight from those who have taken either of the Pro MCPD Windows Developer exams (70-548 for 2.0, 70-563 for 3.5). I've got the prereqs out of the way to take the 563 and picked up the 548 training kit (since there isn't a 563 one).</p> <p>Any advice you can offer? Insights into the approach of the exam; suggested study material; anything would be appreciated!</p> <p>My long-term goal is to get the MCPD Enterprise Developer (perhaps within the next year), but WCF and ASP.NET are both subjects which I'll need lots of study time on--so the Windows Developer cert is a quick route to a Pro cert--do you think it's worth the detour?</p> http://stackoverflow.com/questions/736968/how-do-you-explain-type-forwarding-in-simple-terms 1 How do you explain type forwarding in simple terms ?? Perpetualcoder 2009-04-10T07:32:56Z 2009-04-10T07:41:35Z <p>I am preparing for MCTS 70-536, after reading <a href="http://msdn.microsoft.com/en-us/library/ms404275.aspx" rel="nofollow">this</a> article. I am not 100% sure I understand the concept of typeforwarding. I find the steps given in the article even more confusing. Whats the deal if I am copying the sourcecode of type to be forwarded and recompiling it. What happens with old dll and the client ??</p> http://stackoverflow.com/questions/142373/visual-studio-express-edition-to-get-a-mcts-certification 1 Visual Studio Express Edition to get a MCTS Certification? Scuffia 2008-09-26T22:33:44Z 2008-09-26T22:56:16Z <p>I'll teach in a 3 month course about the basis of .NET Framework, do you think that the Visual Studio Express Edition (both C# and Web development) are sufficient for learning or I need to buy a complete edition license for each guy involved (actually an EDU edition)?</p> http://stackoverflow.com/questions/114710/what-are-the-best-resources-to-get-ms-developer-certification 4 What are the best resources to get MS developer Certification? Omar Kooheji 2008-09-22T12:57:18Z 2008-09-22T13:42:40Z <p>I've just started working on my 2nd job out of university and my new employer has offered to pay for the resources and the tests to get me some certifications.</p> <p>Although most of the companies software is written in Java I'm pretty much the only .Net developer and they mean to keep me as a .Net devloper.</p> <p>I've looked into getting .Net 3.5 certification but it looks like most of the books for it are as yet unavailable. I've skimmed through the .Net fundamentals book, and it's okay but it's not very well written and there are apparently some errors in the code.</p> <p>So far my best resource has been this post by Jorgen Thelin: <a href="http://www.thearchitect.co.uk/weblog/archives/2008/08/path_to_net_35_developer_certification.html" rel="nofollow">http://www.thearchitect.co.uk/weblog/archives/2008/08/path_to_net_35_developer_certification.html</a></p> <p>but it looks like the books he recommends aren't in print yet :(</p>