MCPD 4.0
April 12, 2011 Leave a comment
I passed exam 70-521 last week.
I found the exam a bit different than other Microsoft exams that I have taken. The content of the questions were pretty straightforward (except some of the LINQ questions were a bit contrived). The biggest difference to prior exams is that you can apply test-taking strategies because on 95% of the questions, the answer was provided. There were few, if any “none of the above” as answers. That means it was fairly easy to use process of elimination to narrow down the potential answers.
In other news, I created a slide deck to play before the TriNug meeting tomorrow night. It is like the advertisements that play at some movies before the previews. I took most of the questions from the MSFT training kit – though I threw in 1 question that I remember vividly from the exam. I couldn’t remember it exactly, but the intent is like this:
What code sample makes this window in WPF (line numbers are for reference only)?
A:
- <DockPanel>
- <Button Content="Top" DockPanel.Dock="Top"/>
- <Button Content="Bottom" DockPanel.Dock="Bottom"/>
- <Button Content="Left" DockPanel.Dock="Left"/>
- <Button Content="Right" DockPanel.Dock="Right"/>
- <Button Content="Center"/>
- </DockPanel>
B:
- <DockPanel>
- <Button Content="Top" DockPanel.Dock="Top"/>
- <Button Content="Bottom" DockPanel.Dock="Bottom"/>
- <Button Content="Left" DockPanel.Dock="Left"/>
- <Button Content="Center"/>
- <Button Content="Right" DockPanel.Dock="Right"/>
- </DockPanel>
C:
- <DockPanel>
- <Button Content="Left" DockPanel.Dock="Left"/>
- <Button Content="Top" DockPanel.Dock="Top"/>
- <Button Content="Center"/>
- <Button Content="Bottom" DockPanel.Dock="Bottom"/>
- <Button Content="Right" DockPanel.Dock="Right"/>
- </DockPanel>
D:
- <DockPanel>
- <Button Content="Top" DockPanel.Dock="Top"/>
- <Button Content="Bottom" DockPanel.Dock="Bottom"/>
- <Button Content="Left" DockPanel.Dock="Left"/>
- <Button Content="Right" DockPanel.Dock="Right"/>
- <Button Content="Center“DockPanel.Dock
- </DockPanel>
It’s easy enough to figure out the answer – just copy past each possibility into a WPF form in VS2010.
In any event, I am going on vacation next week so I won’t post back here for 2 weeks.