PrepAway - Latest Free Exam Questions & Answers

Author: seenagape

Which background color will be displayed on the Grid?

You are developing a Web application by using Silverlight 4 and Microsoft Visual Studio 2010. You have three resource dictionaries named OrangeSkin.XAML, GraySkin.XAML, and
GreenSkin.XAML. Each dictionary has a SolidBrush style and uses the same x:key name of MyBrush. The three resource dictionaries define the color of MyBrush as follows:

OrangeSkin.XAML defines the color of MyBrush as Orange.
GraySkin.XAML defines the color of MyBrush as Gray.
GreenSkin.XAML defines the color of MyBrush as Green.

You have a control that merges the dictionaries by using the following XAML fragment.
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source=”OrangeSkin.xaml” />
<ResourceDictionary Source=”GraySkin.xaml” />
<ResourceDictionary Source=”GreenSkin.xaml” />
</ResourceDictionary.MergedDictionaries>
<SolidColorBrush x:Key=”MyBrush” Color=”Azure”/>
</ResourceDictionary>
</UserControl.Resources>
<Grid x:Name=”LayoutRoot” Background=”{StaticResource MyBrush}”>
</Grid>

Which background color will be displayed on the Grid?

Which XAML fragment should you insert between lines 06 and 07?

You are developing an application by using Silverlight 4 and Microsoft .NET Framework 4. The application contains the following XAML fragment. (Line numbers are included for reference only.)

01 <Grid x:Name=”LayoutRoot” Background=”White”>
02 <Grid.Resources>
03 <vm:Customers x:Key=”CustomerVM”/>
04 <vm:MockCustomers x:Key=”MockCustomerVM”/>
05 </Grid.Resources>
06 <sdk:DataGrid AutoGenerateColumns=”True”
07 ItemsSource=”{Binding CustomerList}” />
08 </Grid>

You need to bind the DataGrid to the CustomerList property in MockCustomerVM at design time. You also need to bind the DataGrid to the CustomerList property in CustomerVM at run time. Which XAML fragment should you insert between lines 06 and 07?

What type of report should you create?

You would like to create a report about the present project performance using the SQL Server Reporting Services. You want this report to reference a particular point in time to create a history of the project performance. Once the report is created you want to generate a series of these reports to identify trends, history, and track overall project performance. What type of report should you create?

What is the most likely reason why the media was overwritten even though Holly used a password on the backup t

Holly is the Microsoft Project Server administrator and she has completed a full backup of her Microsoft SQL Server database. Holly has added a media set password to the backup tape. Holly later learns that someone has overwritten the media although she used a password on the backup tape. What is the most likely reason why the media was overwritten even though Holly used a password on the backup tape?

What should you do?

You are developing a Silverlight 4 application. You handle the RightMouseButtonDown event of the applications layout root element to display a shortcut menu. You discover that when the right mouse button is released, the standard information panel in Silverlight appears. You need to prevent the standard information panel in Silverlight from being displayed.
What should you do?