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 Exambible 70-517 exam study guides now. We will not let you down with our money-back guarantee.
Q11. You need to configure filtering for the Product page.
Which filtering option should you use?
A. products/pages/products.aspx?productID=*&.productCategory=*
B. products.aspx;productID;productCategory; lucernepublishing.com
C. products; productID; productCategory; lucernepublishing.com
D. products/pages/products.aspx?*
E. productID;productCategory
Answer: E
Q12. HOTSPOT
A company uses SharePoint for document sharing and collaboration. Users create content types for different types of documents that are created daily. All document content types have ProjectID, Type, and AuditStatus columns. ProductID is not a required field. The Auditing department requires that every document have a ProjectID within two weeks of the creation date.
If a document does not have a ProjectID, the AuditStatus column must show a message for users to specify the ProjectID. For performance reasons, fewer than 50 documents at a time should be processed.
You need to write a work-item timer job to meet the requirement.
How should you complete the relevant code? (To answer, select the appropriate option from the drop-down list in the answer area.)
Answer:
Q13. You need to configure search engine optimization for the site.
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)
A. Disable anonymous access to the web application while you make changes.
B. Activate the Search Engine Sitemap feature in the site collection.
C. Disable anonymous access to the site collection while you make changes.
D. On the Search Engine Optimization Settings page, in the Include these meta tags in pages text box, enter <meta name="do-not-follow" value="/_Configuration Files/" />
E. Ensure that the Search Engine Sitemap job is running.
F. On the Search Engine Sitemap Settings page, enter Disallow: /_ConfigurationFiles/ to the exclusion rules.
Answer: B,C,D
Explanation: * Steps in the SEO process:
/ Configure SEO settings for the site collection.
/ (B, not E) Configure sitemap settings for the site collection.
/ Add and edit SEO metatags.
* D (not F): Configure SEO settings for the site collection Verify site ownership
✑ Sign in to the webmaster tools portal for your desired search engine and provide
requested information about your website.
✑ From your SharePoint Public Website home page, click Settings Small Settings gear that took the place of Site Settings. > Site settings > Site Collection Administration > Search engine optimization settings.
✑ Click Include these meta tags in pages.
✑ Copy the meta tag provided by the webmaster tools portal, and paste it into the box.
✑ Click OK.
✑ From the webmaster tools portal, ask the search engine to verify your ownership of this website.
Q14. HOTSPOT
You need to implement the social maintenance tool.
How should you complete the relevant code? (To answer, select the appropriate option from each dropdown list in the answer area.)
Answer:
Q15. You need to ensure that the data synchronization does not affect the end user experience on the intranet.
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)
A. Option A
B. Option B
C. Option C
D. Option D
Answer: A,C
Q16. DRAG DROP
You are developing an ASP.NET MVC web application in Visual Studio 2012.
The application has a model named ReservationLocation that contains properties named City and State.
The view that displays reservations has a single text box named loc for entering the location information. The location is entered as city, state.
There are action methods that have ReservationLocation as a parameter type. You need to ensure that the City and State properties are correctly populated.
How should you implement model binding for the ReservationLocation type? (To answer, drag the appropriate code segment to the correct location or locations. Each code segment 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:
Q17. You need to validate that specific users can delete tasks. Which code segment should you insert at line CD04?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: D
Q18. You need to modify the application to meet the productId requirement. What should you do?
A. Modify the RegisterGlobalFilters method of the Global.asax.es file as follows. Contract.Assume<ArgumentException>(productId != 0);
B. Modify the GetDealPrice method of ProductController as follows. Contract.Requires<ArgumentException>(productId > 0);
C. Modify the RegisterGlobalFilters method of the Global.asax.es file as follows. Contract.Requires<ArgumentException>(productId > 0);
D. Modify the GetDealPrice method of ProductController as follows. Contract.Assume<ArgumentException>(productId > 0);
Answer: B
Explanation: The Contract.Requires(Of TException) method specifies a precondition contract for the enclosing method or property, and throws an exception if the condition for the contract fails.
Syntax: 'Declaration
Public Shared Sub Requires(Of TException As Exception) ( _ condition As Boolean _
)
Type Parameters TException
The exception to throw if the condition is false.
Parameters condition
Type: System.Boolean
The conditional expression to test.
Reference: Contract.Requires(Of TException) Method (Boolean)
Q19. A legal company uses SharePoint for document and records management. You search all documents by using extractors and managed properties. FAST Query Language (FQL) is enabled for the result sources, and the content of the document is indexed as full text. All documents are named by using the following pattern: "AAA-Axxxx-AA".
You must find documents that were created in May 2012 and contain the ordered keywords "liable", "advocate", and "adjudication". Results that are returned must include only document names that begin with "HCT-Q" and end only with "AB".
You need to create the FQL query that returns the required results.
Which FQL statements should you use? (Each correct answer presents part of the solution. Choose all that apply.)
A. Write> =05/01/2012 and write<=05/31/2012
B. string('liable advocate adjudication", mode="onear")
C. title:HCT-Q*
D. title:HCT-Q????-AB
E. NEAR (liable, advocate, adjudication)
F. write:range (2012-05-01, 2012-05-31)
Answer: B,D,F
Explanation: B (not E):
* The ordered variant of NEAR, and requires an ordered match of the terms. The ONEAR operator can be used to restrict the result set to items that have N terms within a certain
distance of Returns only items that don’t match the operand. The operand may be any valid FQL expression.one another.
D (not C):
* All documents are named by using the following pattern: "AAA-Axxxx-AA".
* Results that are returned must include only document names that begin with "HCT-Q" and end only with "AB".
F (not A):
* Range. Enables range matching expressions. The RANGE operator is used for numeric and date/time managed properties.
* FQL provides the datetime data type for date and time.
The following ISO 8601-compatible datetime formats are supported in queries: YYYY-MM-DD
YYYY-MM-DDThh:mm:ss YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssfrZ
Reference: FAST Query Language (FQL) syntax reference
Q20. You have a SharePoint publishing site. The marketing team tags their documents by using a managed metadata field named Location. The site has been fully crawled. Documents are tagged with city names only.
A SharePoint app on the site displays search results by using the following term set.
You create the following code segment to query the contents of the site: (Line numbers are included for reference only.)
You need to create a Keyword Query Language (KQL) expression to return results for all assets in the Central region.
Which code segment should you insert at line 02?
A. var queryTerms = "Location";
B. var queryTerms = "577c8e48-d5d9-4e5f-8e35-408c723feb11";
C. var queryTerms = "b49f64b3-4722-4336-9a5c-56c326b344d4";
D. var queryTerms = "owstaxidlocation: 1acfae8a-70b4-4ce0-bfbf-96c0e711f 8df"
Answer: C