Actualtests offers free demo for 70-517 exam. "Recertification for MCSD: SharePoint Applications", also known as 70-517 exam, is a Microsoft Certification. This set of posts, Passing the Microsoft 70-517 exam, will help you answer those questions. The 70-517 Questions & Answers covers all the knowledge points of the real exam. 100% real Microsoft 70-517 exams and revised by experts!
♥♥ 2021 NEW RECOMMEND ♥♥
Free VCE & PDF File for Microsoft 70-517 Real Exam (Full Version!)
★ Pass on Your First TRY ★ 100% Money Back Guarantee ★ Realistic Practice Exam Questions
Free Instant Download NEW 70-517 Exam Dumps (PDF & VCE):
Available on:
http://www.surepassexam.com/70-517-exam-dumps.html
Q1. You create a document reporting Web Part for the Marketing team auditors. You need to configure throttling for the Web Part.
Which code segment should you insert at line MA08?
A. spQuery.QueryThrottleMode = SPQueryThrottleOption.Strict;
B. spQuery.QueryThrottleMode = SPQueryThrottleOption.Override;
C. spQuery.QueryThrottleMode = SPQueryThrottleOption.Disable;
D. spQuery.QueryThrottleMode = SPQueryThrottleOption.Default;
Answer: B
Q2. 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.
Q3. You develop a SharePoint app to create an approval workflow for expense reports. The app must collect user input before starting the workflow.
You need to use ASP.NET forms in the workflow. Which form type should you use?
A. Workflow input form
B. Workflow initiation form
C. Workflow task form
D. Workflow modification form
Answer: B
Q4. You are developing an ASP.NET MVC news aggregation application that will be deployed to servers on multiple networks.
The application must be compatible with multiple browsers. A user can search the website for news articles. You must track the page number that the user is viewing in search results.
You need to program the location for storing state information about the user's search. What should you do?
A. Store search results and page index in Session.
B. Use Application state to store search terms and page index.
C. Use QueryString to store search terms and page index.
D. Store search results and page index in TempData
Answer: C
Q5. Adventure Works uses SharePoint to store product and order information.
Product managers visit the Products list to see the status of each product. They request a feature that will allow them to easily see the recent and old product orders without opening the Products list. The products orders page is located at /sitepages/productorders.aspx, and the product order history page is located at /sitespages/productordershistory.aspx.
Both pages require a query string parameter named ProductID.
You need to add custom actions to the Products list by using the least amount of administrative effort.
What should you do?
A. Add an empty element to the SharePoint project. Add a <CustomAction> tag, set the Location element to EditControlBlock, and then use the <UrlAction> tag for a redirect to the custom page.
B. Create a Windows Application and add a reference to Microsoft.SharePoint.Portal.CustomActions.dll and use the SPCustomActions class to add a custom action.
C. Open the site in SharePoint Designer. Create a custom List Item Display Template and then apply it to the Products List View Web Part.
D. Create a visual Web Part. Use a grid view with a template column and hyperlink, and databind the Products list. Add the Web Part to the allltems.aspx page of the Products list.
Answer: D
Q6. You are developing an ASP.NET MVC application.
You need to authenticate clients by using NT LAN Manager (NTLM). Which authentication method should you implement?
A. Basic
B. Windows
C. Forms
D. Kerberos
Answer: B
Explanation: http://msdn.microsoft.com/en-us/library/aa292114(v=vs.71).aspx
Q7. You need to configure a new site collection in Central Administration. You will use the site collection to manage navigation terms.
What should you do?
A. Create a site collection by using the Publishing Portal template.
B. Create a site collection by using the Enterprise Search Center template.
C. Create a site collection by using the Records Center template.
D. Set the website address to http://adventureworks.com/sites/navigation
Answer: A
Q8. A server in the SharePoint farm experiences high memory usage. Task Scheduler on the server runs a Windows PowerShell script to perform backups of Wholesale sites.
You need to resolve any memory leak issues in the Windows PowerShell script.
What should you do? (Each correct answer presents a complete solution. Choose all that apply.)
A. Insert the code segment at line EW04: Start-SPAssignment -Global
B. Insert the code segment at line EW17:
$site.Close()
C. Insert the code segment at line EW17: Stop-SPAssignment -SemiGlobal
D. Insert the code segment at line EW17: Stop-SPAssignment –Global
Answer: A,C
Explanation: * Start-SPAssignment –Global initiates a new assignment store.
* Stop-SPAssignment . Disposes of objects in the provided assignment collection.
The Stop-SPAssignment cmdlet disposes of objects in the provided assignment collection.
Use the Global parameter to dispose of all objects in the global assignment collector and to stop the global store from collecting additional objects. Provide a SemiGlobal assignment collector to dispose of all contained objects.
From scenario:
* Performance Optimization and Memory Usage
SPSite objects must be removed from memory immediately after the objects go out of scope.
Q9. DRAG DROP
You need to create workflows for your business processes by using the least amount of development effort.
Which four 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:
Q10. HOTSPOT
A company uses SharePoint to manage a large number of documents.
The Document ID Service feature is enabled. You need to create a custom class that generates a unique ID for each document.
How should you complete the class definition? (To answer, select the appropriate code segment from each drop-down list in the answer area.).
Answer: