PrepAway - Latest Free Exam Questions & Answers

Author: seenagape

What attribute must you assign to this resource type?

You work as the Project Manager for company.com Inc. You are using Microsoft Project Web Access to manage your project teams. You would like to create a resource that serves as a model resource for an upcoming electric project. You want the resource to be a “dummy” resource that emulates electricians in the project. You do not want the dummy resource tied to a real account. What attribute must you assign to this resource type?

Which code segment should you use?

You are developing a shopping application by using Silverlight 4.
The application has a ListBox named lstBasket that contains the items in the shopping basket. You need to save the items in lstBasket to isolated storage. You also need to ensure that the items isolated storage are available to other Silverlight applications hosted on the same Web site.
Which code segment should you use?

Which of the following actions will you perform to estimate the costs without assigning specific people to tas

You work as a Project Manager for BlueSoft Inc. You use Microsoft Office Project 2007 for developing the project schedule. You are assigned the project of remodeling a home. Your project will require electricians to work on multiple tasks. You have five electricians to work on your project, but you are not sure who will be the best for a certain task. Which of the following actions will you perform to estimate the costs without assigning specific people to tasks?

Which code segment should you use?

You have a Silverlight 4 application that uses isolated storage.
You create an application that h as a 5 MB file that must be saved to isolated storage. Currently, the application has not allocated enough isolated storage to save the file.
You need to ensure that the application prompts the user to increase the isolated storage allocation.
You also need to ensure that only the minimum amount of space needed to save the 5 MB file is requested. Which code segment should you use?

Which two actions should you perform in the CheckNetworkStatusAndRaiseToast method?

You are developing an outofbrowser application by using Silverlight 4. The main page of the application contains the following code segment:

public MainPage()
{
InitializeComponent();
NetworkChange.NetworkAddressChanged += (s, e) => CheckNetworkStatusAndRaiseToast();
Check Network Status And Raise Toast();
}

You need to ensure that the application will raise a toast notification when network connectivity changes. Which two actions should you perform in the CheckNetworkStatusAndRaiseToast method? (Each correct answer presents part of the solution. Choose two.)

which must include the current project status of schedule and cost, and how those compare to the original plan

The project customer has just approved your project plan and given you permission to start the project. As the project manager, you must provide status reports at the end of each week, which must include the current project status of schedule and cost, and how those compare to the original plan. What must you do before you begin to execute the project?

Which code segment should you insert at lines 11 and 12?

You are developing a ticketing application by using Silverlight 4.
You have a listbox named lstTickets that contains a list of the tickets. The page contains a button that allows the user to print the tickets. The PrintView UserControl binds to the type in lstTickets and is designed to fit a standard sheet of paper. You add the following code segment to the button event handler. (Line numbers are included for reference only.)

01 var doc = new PrintDocument();
02 var view = new PrintView();
03 doc.PrintPage += (s, args) =>
04 {
05 var ppc = doc.PrintedPageCount;
06 if (ppc < lstTickets.Items.Count)
07 {
08 var data = lstTickets.Items[ppc];
09 view.DataContext = data;
10 args.PageVisual = view;
11
12
13 }
14 };
15 doc.Print(“tickets”);

You need to use the Silverlight printing API to print each ticket on its own page. You also need to ensure that all tickets in the listbox are printed.
Which code segment should you insert at lines 11 and 12?

Which code segment should you use?

You are developing a Silverlight 4 application.
The application contains a Product class that has a public string property named Name.
You create a TextBox control by using the following XAML fragment.
<TextBox Text=”{Binding Name, ValidatesOnDataErrors=True}” />

You need to ensure that validation errors are reported to the user interface. You also need to ensure that a validation error will occur when the TextBox control is empty.
Which code segment should you use?