Which XAML fragment should you use?
You are developing a Silverlight 4 application. The following ControlTemplate has been defined as a Resource. <ControlTemplate TargetType=”TextBox” x:Key=”TextBoxTemplate”>
<! custom code… >
</ControlTemplate>
You need to set a TextBox control to use the resource. Which XAML fragment should you use?
What account is used for the service account?
You are working with Henry to configure the Microsoft SQL Server Reporting Services for your standalone server deployment. You and Henry have installed SharePoint and report server on a single server. Henry wants to now configure an account to access the services with write and execute permissions. You disagree with Henry that a new account is needed. What account is used for the service account?
Which XAML fragment should you use?
You are developing a Silverlight 4 application. You define a style according to the following XAMLfragment.
<Style TargetType=”Button”>
<Setter Property=”Width” Value=”75″ />
<Setter Property=”Height” Value=”23″ />
</Style>
You need to implement a new button that will override this style by using the default Silverlight style.
Which XAML fragment should you use?
What is most expedient method to create management’s report and deliver it to them on a weekly basis?
You are the Microsoft Project Server administrator for your organization. The members of the management committee has asked you to create a weekly report about the project’s progress. They do not want to connect to the Report Manager to view the report. What is most expedient method to create management’s report and deliver it to them on a weekly basis?
Which XAML fragment should you use?
You are developing a Silverlight 4 application.
You need to create an implicit style for a ComboBox that specifies the following settings:
FontFamily = Verdana
Foreground = Green
Which XAML fragment should you use?
How will she accomplish the task?
You are the Microsoft Project Server Administrator and you are working with Jane, a Project Manager in your company. Jane has to create views for the resource managers and executives to analyze resource availability and commitments. How will she accomplish the task?
Choose and reorder the steps to configure a managed account in Project Server 2010
Which XAML fragment should you use?
You are developing a Silverlight 4 application. You need to add a MediaElement control that handles when the media has finished playing. Which XAML fragment should you use?
Which of the following meeting templates would you use to accomplish the task?
You work as a Project Manager for company.com Inc. You need to call a meeting for a surprise party for a project team member’s birthday. Which of the following meeting templates would you use to accomplish the task?
Which XAML fragment should you insert at line 10?
You are developing a Silverlight 4 application.
The application defines the following XAML fragment. (Line numbers are included for reference only.)
01 <Grid x:Name=”LayoutRoot”>
02 <sdk:Frame x:Name=”ContentFrame” Source=”/Home”>
03 <sdk:Frame.UriMapper>
04 <sdk:UriMapper x:Name=”ContentMapper”>
05 <sdk:UriMapping Uri=”/{pageName}” MappedUri=”/Views/{pageName}.xaml”/>
06 </sdk:UriMapper>
07 </sdk:Frame.UriMapper>
08 </sdk:Frame>
09 <Grid>
10
11 </Grid>
12 </Grid>
You need to define a hyperlink that navigates to a resource within the Frame. Which XAML fragment should you insert at line 10?