getcertified4sure.com

Top Tips Of 70-517 questions




Cause all that matters here is passing the Microsoft 70-517 exam. Cause all that you need is a high score of 70-517 Recertification for MCSD: SharePoint Applications exam. The only one thing you need to do is downloading Ucertify 70-517 exam study guides now. We will not let you down with our money-back guarantee.

Q61. You need to add the field control to the About Us page layout. Which control should you add?

A. Option A

B. Option B

C. Option C

D. Option D

Answer: A


Q62. You need to ensure that all the MVC controllers are secure.

Which code segment should you use as the body for the CreateController method in AdminVerifierFactory.es?

A. Option A

B. Option B

C. Option C

D. Option D

Answer: C


Q63. You are developing an ASP.NET MVC web application that includes the following method.

You need to test the AccountBalance method. Which unit test should you use?

A. Option A

B. Option B

C. Option C

D. Option D

Answer: C

Explanation: http://msdn.microsoft.com/en-us/magazine/cc163665.aspx http://msdn.microsoft.com/en­ us/library/microsoft.visualstudio.testtools.unittesting.assert.areequal(v=vs.110).aspx


Q64. Adventure Works uses a SharePoint publishing site to host their public-facing website at http://www.adventureworks.com. The website gives external users the ability to register and sign in to the site to buy Adventure Works products.

You notice that publicly registered users see the SharePoint ribbon.

You need to ensure that the SharePoint ribbon is available only to content authors and administrators.

What should you do?

A. Open the current site master page in SharePoint Designer, place the SharePoint:SPSecurityTrimmedCcntrol control around the div tag with the s4-ribbonrow ID. Set the PermissionsString to ManageSubWeb.

B. Open the current site master page in SharePoint Designer, find a div tag with the s4­ ribbonrow ID, and then remove all of the contents of the div.

C. Open the current site master page in SharePoint Designer and then place the SharePoint:SPSecurityTrimmedControl control around the div tag with the 34-ribbonrow ID. Set the PermissionsString to AddAndCustomizePages.

D. In the SharePoint project, add an Empty Element and then use the <HideCustomAction> tag to hide the ribbon.

Answer: B


Q65. DRAG DROP 

You plan to use an app event receiver in conjunction with a remote event receiver. You need to create the remote event receiver by using Visual Studio 2012.

Which three actions should you perform in sequence? (To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.)

Answer:


Q66. HOTSPOT 

A company's IT department implements a Help Desk Ticketing system that involves workflow development by using SharePoint Designer and InfoPath. The Help Desk Ticket workflow involves multiple steps and tasks that have serial approvals of multiple users and groups with custom task email messages.

The Approver accidently rejects a workflow step, and the workflow has stopped. The Approver then corrects the step.

You need to continue the workflow to reflect the updated approval.

Which activity should you use? (To answer, select the appropriate action from the list of actions in the answer area.)

Answer:


Q67. DRAG DROP 

You are developing an ASP.NET MVC application that has pages for users who browse the site with Windows Phone 7.

The pages for Windows Phone 7 include the following files:

✑ _Layout.WP7.cshtml

✑ Index.WP7.cshtml

You need to update the application so that it renders the customized files correctly to Windows Phone 7 users.

How should you update the Application_Start method? (To answer, drag the appropriate line of code to the correct location or locations. Each line of code may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

Answer:


Q68. You need to create the term set for the Document Library app named Project Documents.

What should you do? (Each correct answer presents part of the solution. Choose all that apply.)

A. Insert the following code segment into line DL18:

TermStore termStore = taxonomySession.GetDefaultKeywordsTermStore();

B. Insert the following code segment into line DL18:

TermStore termStore = taxonomySession.GetDefaultSiteCollectionTermStore();

C. Insert the following code segment into line DL24: myTermSet.CreateTerm("-png", 1033, Guid.NewGuid());

D. Insert the following code segment into line DL24: myTermSet.CreateTerm(".bmp", 1033, Guid.NewGuid());

Answer: A,C 

Explanation:

* From scenario:

/ You must develop a console app to print the current term sets and each root term for the app by using the following style: TermSet : name Term : name

/ (A, C, Not B, not D) The Document Library app named Project Documents must include a loca term set for document types. The term set must contain the default terms .docx, .png, and -jpg.


Q69. You need to create a custom sign-in page to allow the users of the FranchiseMonitor app to authenticate against SharePoint and Margie's Travel API.

What should you do?

A. Create an app for SharePoint. Set the trust level to Sandbox solution. Create an application page that writes a cookie named FedAuth. Deploy the app and configure the Sign In Page URL in Central Administration Authentication Provider for the zone.

B. Create an app for SharePoint. Set the trust level to Farm solution. Create an application page that writes a cookie named FedAuth. Deploy the app and configure the Sign In Page URL in Central Administration Authentication Provider for the zone.

C. Create an app for SharePoint. Set the trust level to Farm solution. Create an application page that writes a cookie named ASPXAUTH. Deploy the app and configure the Sign In Page URL in Central Administration Authentication Provider for the zone.

D. Create an app for SharePoint. Set the trust level to Sandbox solution. Create an application page that writes a cookie named ASPXAUTH. Deploy the app and configure the Sign In Page URL in Central Administration Authentication Provider for the zone.

Answer: B


Q70. You are developing an ASP.NET MVC application in Visual Studio 2012. The application supports multiple cultures.

The application contains three resource files in the Resources directory:

✑ My Dictionary.resx

✑ MyDictionary.es.resx

✑ MyDictionary.fr.resx

Each file contains a public resource named Title with localized translation.

The application is configured to set the culture based on the client browser settings.

The application contains a controller with the action defined in the following code segment. (Line numbers are included for reference only.)

You need to set ViewBag.Title to the localized title contained in the resource files. Which code segment should you add to the action at line 03?

A. ViewBag.Title = HttpContext.GetGlobalResourceObuect("MyDictionary", "Title");

B. ViewBag.Title = HttpContext.GetGlobalResourceObject("MyDictionary", "Title", new System.Globalization.CultureInfo("en"));

C. ViewBag.Title = Resources.MyDictionary.Title;

D. ViewBag.Title = HttpContext.GetLocalResourceObject("MyDictionary", "Title");

Answer: C