aiotestking uk

70-488 Exam Questions - Online Test


70-488 Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

Q1. HOTSPOT - (Topic 5) 

You develop a SharePoint app that companies use to track and submit employee expenses. 

You must create two versions of the app. VersionA is highly customized for a specific client. VersionB has reduced functionality and must be available to the general public. 

You need to publish the apps. 

For each of the following statements, select Yes if the statement is true. Otherwise, select No. 

Answer:  

Q2. - (Topic 5) 

A company uses SharePoint team sites for their projects, which last for a month. 

At the end of every month the project site must be archived and moved to a backup web application. The company plans to create a timer job. 

You need to write custom code that will move the site from the production web application to the archived web application. 

Which method of the timer job should you override? 

A. RunNow 

B. Execute 

C. Update 

D. Provision 

Answer:

Explanation: 

Execute Executes the job definition on the local machine and is intended to be used only by the timer service. 

Note: After you create the constructors, you must override the Execute method of the SPJobDefinition class and replace the code in that method with the code that your job requires. 

Incorrect: 

A: RunNow 

Schedules the job for immediate execution. 

C: SPJobDefinition.Update method 

Causes the job definition to save its state and propagate changes to all machines in the 

farm. 

D: Provision 

Makes the changes to the local server that are needed before the object can be used. 

Reference: Creating Timer Jobs in SharePoint 2010 that Target Specific Services 

Q3. DRAG DROP - (Topic 5) 

You administer the SharePoint environment for a company. You create a SharePoint application to manage budgets and expenses. The application requires access to all site collections and resources. 

You need to package and publish the budget and expenses app. 

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:  

Q4. HOTSPOT - (Topic 5) 

You develop an autohosted app for SharePoint. 

The app will access SharePoint data in the host web. 

You need to configure the minimum required data access permissions for the app. 

How should you configure permissions in the app manifest? (To answer, select the 

appropriate option from each drop-down list in the answer area.) 

Answer:  

Q5. HOTSPOT - (Topic 5) 

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. 

You need to manage task approvals. 

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

Answer:  

Q6. - (Topic 3) 

You need to automate the backup of a site collection. 

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

A. Back up to a network folder. 

B. Set the LockStatus of the site collection to Adding content prevented 

C. Back up to a local folder and then move the backup to a network folder. 

D. Use Central Administration to perform the backup. 

E. Use Windows PowerShell to perform the backup. 

Answer: C,E 

Explanation: C: For better performance, Microsoft recommends that you back up to the 

local computer and then move the backup files to a network folder. 

E (not D): 

Scenario: Automation: Windows PowerShell must be used to automate all operations 

wherever possible. 

Scenario: Backup and Recovery 

* In the event of hardware failure, the SharePoint environment must be restored to the most recent date. 

* The backup process must not degrade system performance. 

* Automation: Windows PowerShell must be used to automate all operations wherever possible. 

Reference: Back up site collections in SharePoint 2013 

Q7. - (Topic 5) 

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:SPSecurityTrimmedControl 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 s4-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:

Explanation: If you designed a custom master page for your SharePoint 2010 and the 

ribbon is in your way, SharePoint has a built-in control that lets you hide it from anonymous 

users in few easy steps. Open and check-out your master page, find where your ribbon 

control starts or look for <WebPartPages:SPWebPartManager id=”m” runat=”Server”/>. 

Place this control below <Sharepoint:SPSecurityTrimmedControl runat=”server” 

Permissions=”AddAndCustomizePages”>. Find where your ribbon control ends or look for 

<div id=s4-workspace> and place the closing control above it 

</SharePoint:SPSecurityTrimmedControl>. Save, check-in the master page and publish it 

to see the changes. From now on, only logged in users with the right permissions will be 

able to see the ribbon on the top. 

Incorrect: 

Not A: Permission should be set to AddAndCustomizePages not ManageSubWeb. 

Reference: SharePoint, Hide the Ribbon from Anonymous Users 

Q8. - (Topic 2) 

You need to implement term set navigation. 

Which code segment should you insert at line TN24? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: Managed Navigation allows for “friendly” URLs. These friendly URLs no longer contain the ”Pages/” folder. 

Reference: SharePoint 2013 – Friendly URLs and Managed Navigation 

Q9. - (Topic 5) 

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 allItems.aspx page of the Products list. 

Answer:

Explanation: 1. To add a menu item custom action feature to the app for SharePoint project Right-click the app for SharePoint project, and add a new Menu Item Custom Action item. 

2. Select the host web to expose the custom action and choose a list template and custom 

list as custom action scope to then click on Next button. 

3. Enter the menu item text you want to show and page in App where you want to redirect 

when the user selects the Menu item then click on the Finish button. 

Example: 

Note: When you are creating an app for SharePoint, custom actions let you interact with the lists and the ribbon in the host web. A custom action deploys to the host web when end users install your app. Custom actions can open a remote webpage and pass information through the query string. There are two types of custom actions available for apps: Ribbon and Menu Item custom actions. 

Reference: Custom actions in SharePoint 2013 

Q10. - (Topic 5) 

Adventure Works uses a SharePoint publishing site for an external website at www.adventureworks.com. The user interface is implemented by using HTML5, CSS 3, and JavaScript. 

You need to ensure that the site designers have an efficient way to create and modify the JavaScript files. 

What should you do? 

A. Set up a mapped network drive in Design Manager. Open the mapped drive and create a folder. Modify the JavaScript files by using Microsoft Notepad. 

B. Open the site in SharePoint Designer. From Master Pages select the JavaScript files to modify them. 

C. Open the site in SharePoint Designer. From All Files, double-click the _private folder and then select the JavaScript folder. Create a folder. Modify the JavaScript files by using Microsoft Notepad. 

D. Open the site in SharePoint Designer. From Master Pages, download the JavaScript files, modify them by using Microsoft Notepad, and then upload them after the changes. 

Answer:

Explanation: Publish and apply design Most assets used by your design, such as images, HTML, CSS, and JavaScript files, will reside in the Master Page Gallery. The Master Page Gallery is a SharePoint document library that by default has versioning turned on, which creates major and minor (draft) versions each time you edit a file. 

Reference: Master pages, the Master Page Gallery, and page layouts in SharePoint 2013 https://msdn.microsoft.com/EN-US/library/office/dn205271.aspx