PrepAway - Latest Free Exam Questions & Answers

Author: seenagape

What should you do?

You successfully access the Internet from your portable computer through your Windows Mobile 6.5 device. After you shut down your portable computer, you are unable to access the Internet from your Windows Mobile device. You need to connect your Windows Mobile device to the Internet. You need to do this without reconfiguring any connections. What should you do?

Which approach should you recommend?

You are designing a SharePoint 2010 application to manage projects. The application has the following
requirements:
Users must have access to the CreateProject.aspx page.
.All changes to the CreateProject.aspx page must be reflected on all project sites.
You need to design a page that can be accessed from each project site.
Which approach should you recommend?

What should you do?

Your company has a Microsoft Exchange Server 2007 Service Pack 1 (SP1) environment with Enterprise client access licenses (CALs) installed. Employees have Windows Mobile 6.5 devices. You manage the Windows Mobile devices by using Microsoft Exchange ActiveSync. You need to ensure that only hands-free devices can connect to Windows Mobile devices through a Bluetooth connection. What should you do?

Which approach should you recommend?

You are designing a SharePoint 2010 site that employees will use for project collaboration. The design should include a project name, identification number, and the names of the people on the project team displayed on a new page.
You need to design the site to meet the following requirements:
This page must be immediately available in existing sites in the site collection upon deployment.
.New sites must have this page immediately available.
Which approach should you recommend?

Which code segment should you add at line 11?

You have a document library named Documents. Minor and major version management is enabled for the document library.

You plan to add a document named MyFile.docx to Documents.

You create a console application that contains the following code segment. (Line numbers are included for reference only.)

01 using (SPSite site = new SPSite(“http://intranet”))
02 {
03 SPList documents = site.RootWeb.Lists[“Documents”];
04 FileStream fstream = File.OpenRead(@”MyFile.docx”);
05 byte[] content = new byte[fstream.Length];
06 fstream.Read(content, 0, (int)fstream.Length);
07 fstream.Close();
08 site.RootWeb.Files.Add(documents.RootFolder.Url + “/MyFile.docx”, content, true);
09 SPFile file = site.RootWeb.GetFile(documents.RootFolder.Url + “/MyFile.docx”);
10 file.CheckIn(string.Empty);
11
12 }

You need to ensure that all users can see the document.

Which code segment should you add at line 11?

What should you do?

Employees have Windows Mobile 6.5 Standard devices. You manage the Windows Mobile devices by using Microsoft System Center Mobile Device Manager (MDM) 2008. You plan to deploy an unsigned application to all Windows Mobile devices. The application requires read/write permissions to system files and protected areas of the device registry. You need to ensure that the application can access these system files and registry settings. What should you do?