Which approach should you recommend?
You are designing the modification of an existing SharePoint 2010 intranet site for a school. The registrar at the
school needs each department to be able to add a new page to their departmental site. The page must be
preconfigured with a Web Part showing the latest announcement list items from the registrars site regarding class
enrollment for the upcoming semester. You need to design a page template that can be used by multiple departments.
Which approach should you recommend?
Which code segment should you include in the Web Part?
You have a document library named MyDocs. MyDocs has a column named Column1. Column1 is a required column.
You discover that many documents are checked out because users fail to enter a value for Column1.
You need to create a Web Part to delete the documents.
Which code segment should you include in the Web Part?
What should you do?
You are using Windows Embedded Standard. You are creating a macro component by using Component Designer. You need to ensure that you are able to use Target Designer to enable and disable individual dependencies of the macro component. What should you do?
What should you do?
Your company has a Microsoft Exchange Server 2007 environment. Employees have Windows Mobile 6.5 devices. You manage the Windows Mobile devices by using Microsoft System Center Mobile Device Manager (MDM) 2008. An employee successfully configures and synchronizes multiple IMAP4 and POP3 e-mail accounts on her Windows Mobile device. The employee configures a new IMAP4 connection to her Exchange e-mail account, but is unable to synchronize the account with the Exchange server. You need to ensure that the employee can synchronize the account with the Exchange server. What should you do?
Which approach should you recommend?
You are using SharePoint 2010 to design an intranet application for a manufacturer. Employees need to view
Web pages with instructions on how to assemble various products. The legal department requires that employees
can view past versions of each set of instructions. The instructions may contain rich text elements such as bullets
and images. You need to design a solution that meets these requirements.
Which approach should you recommend?
Which code element should you add at line 09?
You have a Microsoft .NET Framework console application that uses the SharePoint client object model.
The application contains the following code segment. (Line numbers are included for reference only.)
01 ClientContext cCtx = new ClientContext(“http://intranet/hr”);
02 List sharedDocList = cCtx.Web.Lists.GetByTitle(“Shared Documents”);
03 CamlQuery camlQuery = new CamlQuery();
04 camlQuery.ViewXml =
05 @”<View>
06 <Query>
07 <Where>
08 <Eq>
09
10 <Value Type=’Text’>Doc1.docx</Value>
11 </Eq>
12 </Where>
13 </Query>
14 </View>”;
15 ListItemCollection docLibItems = sharedDocList.GetItems(camlQuery);
16 cCtx.Load(sharedDocList);
17 cCtx.Load(docLibItems);
18 cCtx.ExecuteQuery();
You need to ensure that the application queries Shared Documents for a document named Doc1.docx.
Which code element should you add at line 09?
Which resource should you add?
You are developing a component for a Windows Embedded Standard device. You need to start a custom application during a specific phase of the First Boot Agent (FBA) process.
Which resource should you add?
What should you do?
You are developing a Windows Mobile 6.5 Standard application. You need to ensure that the application has the necessary privileges to run pre-boot. What should you do?
Which two actions should be performed?
You are designing a SharePoint 2010 application that will be used across multiple Web applications. A custom list
definition is deployed to every site collection in the farm. Your application must include a report that shows how
often the new list is provisioned anywhere in the farm. The application must enable permissions to be granted to
specific users to view the report, without the redeployment of code. You need to design a system for logging and
reporting this activity.
Which two actions should be performed? (Each correct answer presents part of the solution.Choose two.)
Which code segment should you add at line 09?
You have a SharePoint site collection that has the URL http://contoso/sites/finance.
You are creating a Microsoft .NET Framework console application that will use the SharePoint client object model to create a site in the site collection.
The application contains the following code segment. (Line numbers are included for reference only.)
01 ClientContext cCtx = new ClientContext(“http://contoso/sites/finance”);
02 Web root = cCtx.Site.RootWeb;
03 cCtx.Load(root);
04 WebCreationInformation webInfo = new WebCreationInformation();
05 webInfo.Title = “site1”;
06 webInfo.Url = “site1”;
07 webInfo.WebTemplate = “MPS#2”;
08 root.Webs.Add(webInfo);
09
10 cCtx.Dispose();
You need to ensure that the application creates the site.
Which code segment should you add at line 09?