1.
You are developing a Windows Presentation Foundation (WPF) application page.
The page uses extensive graphics controls and animation that require absolute positioning. You need to select a control to use as a container. Which control should you select?
2.
You are developing a Windows Presentation Foundation (WPF) application.
You pull employee information from an XML file named EmployeeData.xml. The XML file is as follows.
You need to display all the employee information from the XML file in EmployeeList. Which markup segment should you use?
3.
You are developing a Windows Presentation Foundation (WPF) application.
You add several TextBox controls within a StackPanel control. You next add several Image controls within a second StackPanel control. During testing, you discover that some of the textboxes do not appear in the
proper layout. You need to quickly search for the textboxes and view their properties to identify which ones are incorrect. What should you do?
4.
You are deploying a ClickOnce application manually in a test environment. You need to ensure that the deployment is signed with a self-signed test X.509 certificate. Which tool should you use to create the certificate?
5.
You are developing a Windows Presentation Foundation (WPF) application.
You are planning the deployment strategy for the application. You need to write specific information to the registry during deployment for each user. Which deployment strategy should you use?
6.
You are developing a Windows Presentation Foundation (WPF) application.
A window is defined in the following markup segment.
You need to add a Windows Forms Button control to the window programmatically. Which code segment should you use?
7.
You develop a Windows Presentation Foundation (WPF) application.
This application is used to output data trends to customer service representatives. You use threading to keep the UI responsive. You have a function named UpdateUI that updates all of the UI components. You use the
following code to update the _Data variable. (Line numbers included for reference only.)
You need to update the user interface without knowing if you are on the UI thread. Which code segment should you insert at line 06?
8.
You are developing a Windows Presentation Foundation (WPF) application.
A custom control has a dependency property that is bound to a property of type Int16 on a business layer object. You need to ensure that the bound value always falls within the range of an Int16 value, even if the value that the user enters does not. What should you do?
9.
You are developing a Windows Presentation Foundation (WPF) application.
A user control responds to a click event. The click event handler sets the Handled property to true. You need to ensure that a parent control responds to the event after the user control's handler executes. What should you do?
10.
You are developing a Windows Presentation Foundation (WPF) application.
A UserControl named userControl contains the following controls.

You need to ensure that the content of the label displays "New Content!!!" programmatically from the code- behind of the application window that contains the UserControl. Which code segment should you use?