Which approach should you recommend?
You are designing a SharePoint 2010 solution. You need to design the solution to meet the following requirements:
All sites must have a consistent structure when initially created.
.All sites must include a document library that contains Word documents with searchable properties.
.Site users must be able to generate a spreadsheet detailing the properties of the document library contents.
Which approach should you recommend?
What should you do?
You plan to activate the Developer Dashboard.
You create a command line application that contains the following code segment. (Line numbers are included for reference only.)
01 SPWebService cs = SPWebService.ContentService;
02 cs.DeveloperDashboardSettings.DisplayLevel = SPDeveloperDashboardLevel.On;
You execute the application and discover that the Developer Dashboard fails to appear. You need to ensure that the application activates the Developer Dashboard.
What should you do?
Which tool should you use?
You plan to create a run-time image that will start from a CD-ROM. You need to create an ISO image of the post-FBA run-time image. Which tool should you use?
What should you do?
You have a Windows Mobile 6.5 Professional device and a Windows XP portable computer. You create a Microsoft Office Word Mobile document on the Windows Mobile device. You need to ensure that you can edit the document on the Windows Mobile device and on the portable computer. You also need to ensure that changes made to the document on the portable computer are automatically reflected in the document on the Windows Mobile device when you synchronize. What should you do?
Which approach should you recommend?
You are designing a SharePoint 2010 solution to manage statements of work. You need to design the solution
according to the following requirements:
Store the customer ID, purchase order number, estimated completion date, and other fields associated with
specific documents as they are uploaded.
.The information must be created so that it can be set within the Microsoft Word document information panel.
.Programmatically execute a series of tasks, including assigning tasks to validate the information and creating
team sites, based on information related to each document.
.These tasks must run to completion, even if the server is rebooted.
Which approach should you recommend?
Which code segment should you use?
You create a Web Part that calls a function named longCall.
You discover that longCall takes a long time to execute. You need to display in the Developer Dashboard how long it takes to execute longCall.
Which code segment should you use?
What should you do?
You are configuring a run-time image. You plan to deploy the run-time image on several devices. You need to ensure that each device has a unique computer security ID (SID). What should you do?
Which tool or tools should you use?
You have an internal Windows Mobile 6.5 application that uses Microsoft SQL Server Compact 3.5. The SQL Server Compact 3.5 database synchronizes with a Microsoft SQL Server 2008 database. You need to publish access to the SQL Server 2008 database by using Microsoft Internet Information Services (IIS) 7.
Which tool or tools should you use?
What approach should you recommend?
You are designing a SharePoint 2010 solution for a large sales force. You have the following requirements:
Each sales region must have its own site within the solution with lists to track the current sales data of the sales
executives.
.These lists must contain information about the status of sales opportunities, the estimated price, the expected
close date, and contact information for the potential sale.
.The welcome page for the root site must display a current summary for all regions, including the percentage of
sales expected to close within the next month and total expected revenue over time. You need to design the
solution to meet all these requirements. What approach should you recommend?
What should you do?
You create a Web Part that contains the following logging code. (Line numbers are included for reference only.)
01 SPWeb web = SPContext.Current.Web;
02 try
03 {
04
05 }
06 catch (Exception ex)
07 {
08
09 System.Diagnostics.EventLog.WriteEntry(“WebPart Name”, (“Exception Information: ” + ex.Message), EventLogEntryType.Error);
10 }
You discover that line 09 causes an error. You need to resolve the error.
What should you do?