Choose and reorder the steps required to perform a database attach full upgrade in Project Server 2010
Choose and reorder the configuration steps required before creating a Microsoft Project Web App site
Which XAML fragment should you use?
You are developing a Silverlight 4 application by using the Grid control.
You need to ensure that the Grid has three evenly spaced columns that fill the width of the Grid.
Which XAML fragment should you use?
What option must you choose in the Resource Substitution Wizard in order to test the addition of specific reso
You work as the Project Administrator for company.com Inc. The company uses Microsoft Project Server 2010 to manage the project development process. You need to perform a skill-based scheduling task on the basis of the skill-based resources in your project. You are using the Resource Substitution Wizard to evaluate and swap the actual resources with the defined skill resources. In the Resource Substitution Wizard, you would like the wizard to examine the application of five specific resources in your project to test the allocation of these resources. What option must you choose in the Resource Substitution Wizard in order to test the addition of specific resources?
Which of the following Project Server databases contains near real-time data from the Published database, orga
Which of the following Project Server databases contains near real-time data from the Published database, organized in tables that are read-only and optimized for report generation?
Which code segment should you write in the load event of the window?
You are developing a Silverlight 4 application. The application contains a window that has a TextBlock named TxtHeading. The application also has a font named MyFont in a file named MyFont.otf. MyFont.otf is located in the root folder of the Web application that hosts the Silverlight application. You need to dynamically load the font file and use it to display the contents of TxtHeading. Which code segment should you write in the load event of the window?
what feature would you have the project team use?
You are the project manager of the HHQ Project for your company. You are using the timesheets feature of Microsoft Project Server and Project Web Access so that team members can complete the hours spent on their project work. This information is compiled and is used for project billing to the customer. You have another project, however, that is a fixed fee contract and you would not need to keep track of hours spent on each task in the project. If you wanted team members to report their percentage completion of assignments for project scheduling, what feature would you have the project team use?
Which code segment should you insert at line 06?
You are developing a Silverlight 4 application. You plan to host the application in a Web application. The Web application contains a zip file named Images.zip that contains an image named logo.jpg. You write the following code segment.
WebClient client = new WebClient();
client.OpenReadCompleted += new OpenReadCompletedEventHandler(ClientOpenReadCompleted);
client.OpenReadAsync(new Uri(@”..\Images.zip”,UriKind.Relative));
You also write the following event handler. (Line numbers are included for reference only.)
01 void client_OpenReadCompleted(object sender,
02 OpenReadCompletedEventArgs e)
03 {
04 if (e.Error == null && !e.Cancelled)
05 {
06
07 }
08 }
The main window contains an Image element named ImgLogo. You need to extract logo.jpg from Images.zip and set logo.jpg as the source for ImgLogo. Which code segment should you insert at line 06?
Where will this new list receive its permissions for the users by default?
You work as the Project Manager for company.com Inc. You are using Microsoft Project Server, Microsoft Project SharePoint to configure the project workspace. You need to create a new list in your workspace to address action items, such as a punch list, for your current project. Where will this new list receive its permissions for the users by default?
Which code segment should you insert at line 03?
You are developing a Silverlight 4 application. The application is hosted by using the Following HTML element.
<object data=”data:application/xsilverlight2,” type=”application/xsilverlight2″ width=”100%” height=”100%”>
<param name=”source” value=”ClientBin/MyApp.xap”/>
<param name=”onError” value=”onSilverlightError” />
<param name=”background” value=”white” />
<param name=”minRuntimeVersion” value=”4.0.50401.0″ />
<param name=”autoUpgrade” value=”true” />
<param name=”initParams” value=”InitKey=<%=Session[“modKey”] %>” />
</object>
The App.xaml.cs file contains the following code segment. (Line numbers are included for reference only.)
01 private void Application_Startup(object sender, StartupEventArgs e)
02 {
03
04 }
You need to retrieve the value of the modKey session variable in the Startup event handler.
Which code segment should you insert at line 03?