Which approach should you recommend?
You are designing several new custom applications for a SharePoint 2010 farm. One of the current applications
contains a Web Part with code that requires substantial CPU and memory resources. The SharePoint farm
administrator wants to ensure that new applications containing custom code do not degrade the performance of
the Web front-end (WFE) servers when they are deployed to the SharePoint farm.
You need to enable the administrator to perform the following tasks:
To configure the applications to run in isolation mode
.To control the resource usage of custom SharePoint applications by assigning the execution load to specified
servers and perform load-balancing of the WFE servers
.To limit the resources allotted to specific applications without impacting overall farm performance and stability
Your design must meet all these requirements. Which approach should you recommend?
Which code segment should you use?
You create a client application that remotely calls the Business Connectivity Services (BCS) object model.
You need to create the context that will be used to request a cache refresh.
Which code segment should you use?
What should you review?
You have deployed a run-time image that includes the Enhanced Write Filter (EWF) component. The component is configured for RAM overlay. You start the run-time image. You discover that changes persist to the disk. You confirm that EWF is enabled. You need to discover why EWF did not function correctly. What should you review?
Which two actions should you perform on the device?
Your company has a Microsoft Exchange Server 2007 environment. You have a Windows Mobile 6.5 Professional device. In your Exchange e-mail account, you have a folder named Archive that contains archived e-mail messages, some of which are over a year old. You need to configure the device to ensure that all messages in the Archive folder are available on the device. Which two actions should you perform on the device? (Each correct answer presents part of the solution. Choose two.)
Which approach should you recommend?
An application will be deployed in a SharePoint 2010 server farm that is managed by department-level site
collection administrators.
You need to design this application to meet all the following requirements:
The application must contain a custom Web Part that accesses the object model at the farm level.
.The application must be available anywhere in the farm as more departments require the functionality.
.The site collection administrator in each department must be able to activate the application without the
help of the farm administrator.
.The level of access to the SharePoint 2010 object model must be limited. Which approach should you recommend?
Which base class constructor should you use at line 02?
You have a timer job that has the following constructors. (Line numbers are included for reference only.)
01 public TimerJob1 () : base() { }
02 public TimerJob1(SPWebApplication wApp)
You need to ensure that the timer job runs on the first available timer server only.
Which base class constructor should you use at line 02?
Which value should you assign to the cmiResealPhase extended property of the System Cloning Tool component?
You are designing a run-time image in Windows Embedded Standard. You have included the System Cloning Tool component. You first need to customize the image after the First Boot Agent (FBA) completes. You then need to manually reseal the image. Which value should you assign to the cmiResealPhase extended property of the System Cloning Tool component?
what should you do?
You have a desktop computer that runs Windows Vista and the Windows Mobile Device Center (WMDC). You install Microsoft Device Emulator 3.0 on the desktop computer. You successfully connect to a Windows Mobile 6.5 Professional emulator ROM image by using Device Emulator Manager. When you attempt to cradle the emulator ROM image from within Device Emulator Manager, the image does not connect to the WMDC. You need to configure the WMDC to allow your emulator ROM image to connect. In the WMDC Connection Settings dialog box, what should you do?
Which approach should you recommend?
A SharePoint 2010 server farm has a custom feature installed that provides specialized business logic for a
SharePoint solution package. The solution package is being updated to include additional functionality. Your job is
to specify a deployment method for the updates that will:
Add the additional application business logic to the solution package.
.Provide the least downtime for the application.
.Automate the application upgrade a much as possible.
You need to update the solution package with additional business logic and meet all these requirements.
Which approach should you recommend?
Which code segment should you add at line 05?
You have a SharePoint list named Announcements.
You have an event receiver that contains the following code segment. (Line numbers are included for reference only.)
01 public override void ItemAdding(SPItemEventProperties properties)
02 {
03 if (properties.ListItem[“Title”].ToString().Contains(“secret”))
04 {
05
06 }
07 }
You need to prevent users from adding items that contain the word “secret” in the title to the list.
Which code segment should you add at line 05?