This page was exported from All The Latest MCTS Exam Questions And Answers For Free Share [ https://www.mctsdump.com ] Export date:Thu Mar 28 22:32:09 2024 / +0000 GMT ___________________________________________________ Title: [Pass Ensure VCE Dumps] Download New PassLeader 285q 70-573 Exam Questions And Passing Exam Easily (81-100) --------------------------------------------------- Where Download New Free 70-573 Exam Dumps? As we all konw that new 70-573 exam is difficult to pass, if you cannot get the valid 70-573 exam questions, you will fail the 70-573 exam, but DO NOT WORRY! Nowdays, PassLeader has published the newest 285q 70-573 vce dumps and pdf dumps, in PassLeader's new 285q 70-573 braindumps, you can get all the new questions and answers, it is 100% vaild and will help you achieving 70-573 exam certification quickly. keywords: 70-573 exam,285q 70-573 exam dumps,285q 70-573 exam questions,70-573 pdf dumps,70-573 vce dumps,70-573 study guide,70-573 practice test,TS: Microsoft SharePoint 2010, Application Development Exam QUESTION 81You create a Web Part that contains the following code segment. (Line numbers are included for reference only.)01 public class HebPart1: WebPart02 {03 public VebPart1() {}0405 protected override void CreateChildControlst)06 {07 Button clickButton = new Button(); 0809 base.CreateChildControls();10 ]1112 protected override void BenderContents(HtrolTextWriter writer)13 {1415 base.RenderContents(writer);16 }17 }You discover that the clickButton button does not appear. You need to ensure that the clickButton button appears. What should you do? A.    Delete line 09.B.    Add the following code segment to line 08: Controls.Add(clickButton);C.    Move the code segment from line 07 to line 14.D.    Add the following code segment to line 14: EnsureChildControls(); Answer: BExplanation:MNEMONIC RULE: "create Button, then Add Button"Create a Custom Web Part for SharePoint 2010http://blog.concurrency.com/sharepoint/create-a-custom-web-part-for-sharepoint-2010/SharePoint 2010 Visual Web Partshttp://httpcode.com/blogs/PermaLink,guid,357e4853-9a75-4962-ad68-1e07bcf40bb8.aspx QUESTION 82You create a custom list named Products. You need to perform a Representational State Transfer (REST) query that returns products 30 to 39. Which URL should you use? A.    /ListData.svc/Products(30) $skip=10B.    /ListData.svc/Products(39) $skip=30C.    /ListData.svc/Products $skip=10&$top=30D.    /ListData.svc/Products $skip=30&$top=10 Answer: DExplanation:MNEMONIC RULE: "skip first 30, get top 10"Using REST to get data form SharePoint 2010 listshttp://mysharepointwork.blogspot.com/2010/09/using-rest-to-get-data-form-sharepoint.html QUESTION 83You are creating a Web Part for SharePoint Server 2010. The Web Part contains the following code segment. (Line numbers are included for reference only.)01 protected override void CreateChildControls ()02 {03 base.CreateChildControls ();04 SPSecurity.FunWithElevatedPrivileges (05 delegate06 {07 Label ListCount = new Label ();08 ListCount.Text = String.Format("There are {0> Lists", SPContext.Current.Heb.Lists.Count );09 Controls.Add ( ListCount );10 }}11 }You need to identify which line of code prevents the Web Part from being deployed as a sandboxed solution. Which line of code should you identify? A.    04B.    09C.    08D.    03 Answer: AExplanation:MNEMONIC RULE: "No RunWithElevatedPrivileges for sandboxed solutions"Methods in a sandboxed solution cannot be configured to run with the elevated privileges of the user identity inwhich the application pool runs. Restrictions on Sandboxed Solutions in SharePoint 2010http://msdn.microsoft.com/en-us/library/gg615454.aspx QUESTION 84You have a Feature that contains an image named ImageVl.png. You plan to create a new version of the Feature. You need to ensure that when the Feature is upgraded, the image is renamed as ImageV2.png. You must achieve this goal by using the minimum amount of development effort. Which element should you configure in the Feature definition file? A.    <ApplyElementManifests>B.    <MapFile>C.    <CustomUpgradeAction>D.    <VersionRange> Answer: BExplanation:MNEMONIC RULE: "image file upgrade = MapFile"MapFile Element (Feature)http://msdn.microsoft.com/en-us/library/ff595311.aspx QUESTION 85You use a custom site definition to create SharePoint sites. You need to add a Web Part to the home page of the site definition. Which file should you modify? A.    Onet.xmlB.    default.masterC.    web.conflgD.    Sp.xml Answer: AExplanation:MNEMONIC RULE: "third-party site definition = Onet.xml" You can perform the following kinds of tasks in a custom Onet.xml file that is used for either a custom site definition or a custom web template:Specify an alternative cascading style sheet (CSS) file, JavaScript file, or ASPX header file for a site definition.Modify navigation areas for the home page and list pages. Add a new list definition as an option in the UI. Define one configuration for the site definition or web template, specifying the lists, modules, files, and Web Parts that are included when the configuration is instantiated. Specify Features to be included automatically with websites that are created from the site definition or web template.Understanding Onet.xml Fileshttp://msdn.microsoft.com/en-us/library/ms474369.aspx QUESTION 86You create a SharePoint solution that contains two Features named Feature1 and Feature2. You need to ensure that Feature1 is always activated before Feature2. You must achieve this goal by using the minimum amount of development effort. What should you do? A.    From Feature1.feature explorer, add Feature2 to the Feature Activation Dependencies list.B.    Create a custom Feature receiver for Feature2.C.    From Feature2.feature explorer, add Feature1 to the Feature Activation Dependencies list.D.    Create a custom Feature receiver for Feature1. Answer: CExplanation:MNEMONIC RULE: "add Feature1 to Feature2.feature explorer" Activation Dependencies and Scopehttp://msdn.microsoft.com/en-us/library/aa543162.aspx QUESTION 87You create a Visual Web Part. You need to add an image to the Web Part. The image must be deployed to the 14TEMPLATEIMAGES folder. What should you do in Microsoft Visual Studio? A.    Add a SharePoint Layouts mapped folder and create a subfolder named Images.B.    Create a folder named Images.C.    Add a SharePoint Images mapped folder.D.    Create a folder named_Layouts and a subfolder named Images. Answer: CExplanation:MNEMONIC RULE: Images mapped folderDeploying files using Mapped Foldershttp://blogs.msdn.com/b/vssharepointtoolsblog/archive/2010/03/12/deploying-files-using-mapped-folders.aspx QUESTION 88You have a Web application named WebApp1. You have a Feature receiver named FeatureReceiver1. FeatureReceiver1 stores a connection string in the web.config file of WebApp1. You need to ensure that when FeatureReceiver1 makes configuration changes to web.config, the changes are automatically replicated to all Web servers in the farm. Which class should you use in FeatureReceiver1? A.    SPPersistedObjectB.    SPWebConfigModificationC.    SPDiagnosticsServiceD.    WebConfigurationManager Answer: CExplanation:MNEMONIC RULE: "web.config modification = SPWebConfigModification"To apply modifications that you define through the SPWebConfigModification class to the web.config files inthe server farm, call the ApplyWebConfigModifications method on the current content Web service object, as follows:SPWebService.ContentService.ApplyWebConfigModificationsSPWebConfigModification Classhttp://msdn.microsoft.com/en-us/library/microsoft.sharepoint.administration.spwebconfigmodification.aspx QUESTION 89You need to disable the CriticalExceptionCount measure for all sandboxed solutions. You write the following code segment. (Line numbers are included for reference only.)01 SPUserCodeService userCode = SPUserCodeSecvi.ee. Local;02 SPResourceHeasureCollection measures = userCode.ResourceHeasures;03 SPResourceHeasure measure = measures [" CriticalExc eptionCounc "]; 0405 measure.Update ();Which code segment should you add at line 04? A.    measure.ResourcesPerPoint = 1;B.    measure. AfosoluteLimit. = 0;C.    measure.AbsoluteLimit = 1;D.    measure.ResourcesPerPoint = 0; Answer: DExplanation:MNEMONIC RULE: Zero ResourcesPerPointFor example, AbnormalProcessTerminationCount has a ResourcesPerPoint value of 1. Every time asandboxed solution terminates abnormally, 1 point is added. If you want to increase the penalty for asandboxed solution that terminates, you can set ResourcesPerPoint to another value, such as 2. You can use0 if you are not concerned about this metric.SharePoint 2010 Sandboxed Solutions-Resource Quotashttp://sharepointinnovations.blogspot.com/2011/05/sharepoint-2010-sandboxed-solutions_06.html QUESTION 90You need to add a new field to a provisioned content type. You must propagate the field to child lists and child content types. What should you use? A.    <MapFile>B.    <FieldRefs>C.    <AddContentTypeField>D.    <ApplyElementManifests> Answer: CExplanation:MNEMONIC RULE: "field for content type = AddContentTypeField" AddContentTypeField Element (Feature)http://msdn.microsoft.com/en-us/library/ff595314.aspx http://www.passleader.com/70-573.html QUESTION 91You have a SharePoint site that uses the default search settings. You create a new Search Center. You need to ensure that the new Search Center is the default Search Center for the site. What should you modify? A.    the AllWebs collection of the site collectionB.    the Cache property of the current HttpContextC.    the AllProperties collection of the siteD.    the Session property of the current HttpContext Answer: CExplanation:MNEMONIC RULE: "AllProperties of the site"SPWeb.AllProperties Propertyhttp://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.allproperties.aspxBloody Stupid SPWeb propertieshttp://www.novolocus.com/2010/12/22/stupid-spweb-properties/ QUESTION 92You create an entity named Customer in a Business Connectivity Services (BCS) object mode. You need to ensure that Customer data can be displayed in a Business Data List Web Part. Which method type should you use? A.    GenehclnvokerB.    SpecificFinderC.    FinderD.    IDEnumerator Answer: CExplanation:MNEMONIC RULE: "Finder for all Customer data"The first method created is ReadItem, which allows you to retrieve a specific record from the external storebased on an identifier. This is mapped to the XML metadata as a method instance of type "SpecificFinder." The second method that is created is ReadList, which retrieves all records from the external store. This ismapped in the XML metadata as a "Finder" method instance. These are the minimum two methods that your entity needs to implement in order to serve as a connector forBCS.Using Business Connectivity Services in SharePoint 2010http://msdn.microsoft.com/en-us/magazine/ee819133.aspx QUESTION 94You develop a custom approval workflow. The workflow uses the CreateTask class to assign tasks to a user named User1. A list called Tasks stores the tasks. Other workflows and users use the Tasks list. You need to ensure that the tasks assigned to User1 can only be viewed by User1. What should you do? A.    Set the CreateTask.SpecialPermissions property.B.    Set the CreateTask.TaskProperties property.C.    Break the permission inheritance for the Tasks list.D.    Assign a custom permission level to a group that contains User1. Answer: AExplanation:MNEMONIC RULE: "SpecialPermissions"CreateTask.SpecialPermissions Propertyhttp://msdn.microsoft.com/en-us/library/microsoft.sharepoint.workflowactions.createtask.specialpermissions.aspx QUESTION 95You create a list named List1. You create two workflows named WF1 and WF2 for List1. You need to ensure that when a new item is created in List1, WF1 starts automatically. WF2 must start automatically after WF1 completes. What should you do? A.    Add a SendActivity activity to WF2.B.    Add a Replicator activity to WF2.C.    Create a SPWebEventReceiver event receiver.D.    Create a SPWorkflowEventReceiver event receiver. Answer: DExplanation:MNEMONIC RULE: "Workflow = SPWorkflowEventReceiver" The SPWorkflowEventReceiver class handles workflow events throughout the lifetime of a workflow.Starting: Occurs when a workflow is startingStarted: Occurs when a workflow is startedPostponed: Occurs when a workflow is postponedCompleted: Occurs when a workflow is completedYou can register the SPWorkflowEventReceiver with any site, list, or content type. QUESTION 96You have the following event receiver. (Line numbers are included for reference only.)01 public override void FieldDeleting(SPListEventProperties properties)02 {03 base.FieldDeleting(properties);0405 if (properties.FieldName == "Status")06 {070809 }10 }You need to cancel the operation and redirect the user to a custom error page if the name of the deleted field is Status. Which code segments should you add at lines 07 and 08? A.    07 properties.Status = SPEventReceiverStatus.CancelWithRedirectUrl;08 properties.RedirectUrl - "/_layouts/ customErrorPage.ospx ";B.    07 properties. RedirectUrl = "/ layouts/custoroErrorPage. aspx "; 08 properties.Cancel = true;C.    07 properties.ErrorMessage = "<Pedirect URL = */_layouts/ customErrorPage.aspx' />"; 08 properties.Cancel = true;D.    07 properties.Status = SPEventReceiverStatus.CancelWithRedirectUrl; 08 properties.ErrorHessage = "<Redirect URL > `_/ layouts/customErrorPage.aspx ' />"; Answer: D QUESTION 97You create a custom page layout that has a field control named Field1. You need to ensure that Field1 is only visible when users modify the contents of the page. Which parent control should you use for Field1? A.    PublishingContextB.    PageLayoutValidatorC.    EditModePanelD.    ValidatorAggregator Answer: CExplanation:MNEMONIC RULE: "visible when modify = EditModePanel" Provides a container that shows or hides its child controls based on the mode of the page.EditModePanel Classhttp://msdn.microsoft.com/en-us/library/microsoft.sharepoint.publishing.webcontrols.editmodepanel.aspx QUESTION 98You are creating an event receiver. The event receiver will have a field named Title and a field named Priority. You write the following code segment for the event receiver. (Line numbers are included for reference only.)01 public override void ItemUpdating ( SPItemEventProperties prop)02 {03 base.ItemUpdating (prop);040506 }You need to ensure that when the Title field is changed to include the word IMPORTANT, the Priority field is set to URGENT. Which code segments should you add at lines 04 and 05? A.    04 if ( prop.BeforeProperties ["vti_title "] . ToString () .Contains ("IMPORTANT")) 08 prop.AfterProperties ("Priority"] - "URGENT";B.    04 iff prop.AfterProperties ["vti_title "] . ToString () .Contains("IMPORTANT")) 05 prop.Listltem ["Priority"] = "URGENT";C.    04 if ( prop.AfterProperties ["vti_title "] . ToString () .Contains("IMPORTANT")) 05 prop.AfterProperties ["Priority"] = "URGENT";D.    04 if ( prop.Listltem ["Title"] . ToString () -Contains ("IMPORTANT")) 05 prop.AfterProperties ["Priority"] - "URGENT"; Answer: A QUESTION 99You are creating a custom workflow action to be used in Microsoft SharePoint Designer reusable workflows. The action programmatically creates a SharePoint site named Site1 at a specific URL. The workflow actions schema file contains the following code segment.< Workflowlnfo><Actions Sequential="then" Parallel="and"><Action Name="Create Sice"ClassName =" SPDActivityDemo.Createsite " Assembly=" SPDActivityDemo , Version=l.0.0.0, Culture=neutral, PublicKeyToken= Ia4a7a2c3215a71b " AppliesTo ="all" Category="Test"> <Parameters><Parameter Name="Url" Type=" System.String , mscorlib " Direction="Inr' /> <Parameters> </Action></Actions></ Workflowlnfo >You need to ensure that users can specify the URL property of the action in SharePoint Designer. What should you add to the schema of the action? A.    <Parameter Name=" Url " Type=" System.String , mscorlib " Direction="Out" />B.    <Option Name="equals" Value="Equal"/>C.    <xml vecsion"M1.0" encoding-"utf-8" />D.    < RuleDesigner Sentence="Create site at Ur1 %1."> <FieldBlnd Field=" Url " Text=" Url of site" Id="l" DesignerType =" TextArea " /></ RuleDesigner > Answer: D QUESTION 100You need to create a custom application that provides users with the ability to create a managed property. The managed property name must be specified in the args [1] parameter. You write the following code segment for the application.01 SPSite currentSite = new SPSite("http://intranet");02 SearchContext context = SearchContext.GetContext(currentSite);03 Schema schema = new Schema(context);Which code segment should you add to the application? A.    context.SearchApplication.CrawlStores.Create(args[1]);B.    ManagedPropertyCollection properties = schema.AllManagedProperties; ManagedProperty newMng = properties.Create(args[1], ManagedDataType.Text);C.    ManagedPropertyCollection properties = schema.AllManagedProperties; ManagedProperty newMng = properties.CreateCrawlMonProperty(); newMng.Name = args[1];D.    schema.AllCategories.Create(args[1], Guid.NewGuid()); Answer: BExplanation:MNEMONIC RULE: "properties.Create()"Use the AllManagedProperties property of the Schema class to get the collection of managed properties inthe Shared Service Provider's search schema. To add a new managed property to the collection, use the Create() method.ManagedPropertyCollection Classhttp://msdn.microsoft.com/en-us/library/microsoft.office.server.search.administration.managedpropertycollection.create.aspx http://www.passleader.com/70-573.html --------------------------------------------------- Images: --------------------------------------------------- --------------------------------------------------- Post date: 2015-11-13 06:13:06 Post date GMT: 2015-11-13 06:13:06 Post modified date: 2015-11-13 06:13:06 Post modified date GMT: 2015-11-13 06:13:06 ____________________________________________________________________________________________ Export of Post and Page as text file has been powered by [ Universal Post Manager ] plugin from www.gconverters.com