getcertified4sure.com

Top Leading 70-488 question Reviews!




Your success in Microsoft 70-488 is our sole target and we develop all our 70-488 braindumps in a way that facilitates the attainment of this target. Not only is our 70-488 study material the best you can find, it is also the most detailed and the most updated. 70-488 Practice Exams for Microsoft SharePoint 70-488 are written to the highest standards of technical accuracy.

Q1. DRAG DROP - (Topic 5) 

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: 


Q2. HOTSPOT - (Topic 5) 

A company hosts its public website by using a SharePoint publishing site template. The website allows customers to browse and buy company products. The website user interface is optimized to support multiple browsers, smartphones and tablets. 

You need to enable support for a new tablet type. 

Which Design Manager option should you use? (To answer, select the appropriate link in the answer area.) 

Answer: 


Q3. - (Topic 4) 

You need to apply updates to only the sites that were created based on the Litware Team Site web template. 

Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: 

Scenario: 

In Element.xml file from Litware.Intranet.Templates.wsp we see: 

<Property Name="Litware.teamsite.wt_ID" 

Type="string" Value="WTLitwareTeamSite" /> 


Q4. - (Topic 5) 

You plan to create a SharePoint Business Process Automation (BPA) project. 

You need to process items in queues on a configurable schedule. 

Which tool should you use? 

A. Remote Event Receiver 

B. Work Item Timer Job 

C. Out-of-the-box workflow 

D. SharePoint Designer workflow 

Answer:

Explanation: 

A Work Item Timer Job can be scheduled to run operations in SharePoint. A Work Item Timer Job is essentially a queue where you add list items that need to be processed. When the Work Item Timer Job runs, it pulls items from the queue and process the item. When complete, the item is removed from the queue (if you want) so it is not processed again. 

Reference: ALL ABOUT SHAREPOINT WORK ITEM TIMER JOBS 


Q5. DRAG DROP - (Topic 5) 

A company uses SharePoint and Microsoft Dynamics CRM for collaboration and customer relationship management. The company uses Active Directory Domain Services (AD DS) for identity management. SharePoint and Microsoft Dynamics CRM are configured to use claims-based authentication. The company wants to authorize user access to SharePoint sites by using roles defined in Microsoft Dynamics CRM. 

You create a custom claims provider. The provider adds a claim to the claim token for each role a user has in Microsoft Dynamics CRM. The provider also allows a site administrator to find and select roles from Microsoft Dynamics CRM to authorize user access. The custom claims provider must be created as a class library project to meet the unit testing requirements of the company. The custom claims provider project is complete and ready to be packaged for deployment. 

You need to package and deploy the custom claims provider. 

What should you do? (To answer, drag the appropriate actions to the correct location or locations in the answer area. Each action 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: 


Q6. DRAG DROP - (Topic 4) 

You need to create a collaboration template. 

How should you complete the relevant code? (To answer, drag the appropriate code segments to the correct location or locations in the answer area. 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: 


Q7. - (Topic 5) 

A company uses SharePoint for internal collaboration. SharePoint is deployed on a server farm with a single front-end server, a single application server, and a dedicated database server. 

You review existing Web Parts that read from and write to SharePoint lists. You find the following code in one of the utility classes and notice memory leaks in the method. 

You need to ensure that there are no memory leaks in the method. 

What should you do? 

A. Add a finally statement and include site.Dispose (). 

B. Add site.Dispose() to the catch statement. 

C. Add a finally statement and include siteCollection.Dispose (); 

D. Add siteCollection.Dispose() to the catch statement. 

Answer:

Explanation: Need to manually dispose of the siteCollection instance. This can be done through a finally statement. 

Note: 

* Try and finally blocks or a using statement would be required to avoid potential leaks 

when you create a disposable object within a foreach block, as shown in the following code 

example. 

SPWebApplication webApp = siteCollectionOuter.WebApplication; 

SPSiteCollection siteCollections = webApp.Sites; 

SPSite siteCollectionInner = null; 

foreach (siteCollectionInner in siteCollections) 

try //Should be first statement after foreach. 

Console.WriteLine(siteCollectionInner.Url); 

//Exception occurs here. 

finally 

if(siteCollectionInner != null) 

siteCollectionInner.Dispose(); 

* Why Dispose? Several of the Windows SharePoint Services objects, primarily the SPSite class and SPWeb class objects, are created as managed objects. However, these objects use unmanaged code and memory to perform the majority of their work. The managed part of the object is much smaller than the unmanaged part. Because the smaller managed part does not put memory pressure on the garbage collector, the garbage collector does not release the object from memory in a timely manner. The object's use of a large amount of unmanaged memory can cause some of the unusual behaviors described earlier. Calling applications that work with IDisposable objects in Windows SharePoint Services must dispose of the objects when the applications finish using them. You should not rely on the garbage collector to release them from memory automatically. 

Reference: Best Practices: Using Disposable Windows SharePoint Services Objects 


Q8. - (Topic 5) 

Adventure Works uses a web design firm to design the user interface for an upcoming toy sales website, www.toys.adventureworks.com. The website is built by using a SharePoint publishing template. 

Adventure Works must implement the newly designed user interface for the site. The design firm provides a set of HTML, CSS, and JavaScript files. 

You need to create and publish a SharePoint master page by using the supplied files. 

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

A. From the Master Pages section in SharePoint Designer, select Create New Master Page and then replace the master page contents with the contents of the HTML file. 

B. From SharePoint Designer, open the master page gallery. Right-click the new master page and then select Set as Default Master. 

C. From the Design Manager, map a network drive to the /_layouts/masterpage/ folder. Then, in Windows Explorer, copy all the UI elements provided by the design team to the network share. 

D. From the Edit Master Page section in Design Manager, select Convert an HTML File to a SharePoint Master Page to generate a master page from the HTML file provided by designer firm. 

E. Publish the master page. Then, from Site Settings, choose the Look and Feel section, and then select Master Page. Choose the master page and select OK. 

F. Preview the master page and select Snippets to get HTML segments of the SharePoint top navigation, quick launch, and body. Then, edit the master page by using Microsoft Notepad and replace the HTML with the new segments. 

Answer: B,D,E 

Explanation: Note: * 

D, Not A: To convert the HTML file into a .master file 

Browse to your publishing site. 

In the upper-right corner of the page, choose Settings, and then choose Design 

Manager. 

In Design Manager, in the left navigation pane, choose Edit Master Pages. 

Choose Convert an HTML file to a SharePoint master page. 

In the Select an Asset dialog box, browse to and select the HTML file that you 

want to convert.etc 

E (not F): Let's say you created a new Master Page/Theme/CSS for your SharePoint site and want to apply them across your site (including all your subsites as well). This can be easily done from Site Settings -> Look & Feel -> Master Page. 

B: Usually you'll set the master page as both default and custom master page, 

Reference: How to: Convert an HTML file into a master page in SharePoint 2013; How to: Create a minimal master page in SharePoint 2013 


Q9. HOTSPOT - (Topic 5) 

You develop a SharePoint-hosted app that is used by internal users to read and write data. 

The app has the following requirements: 

. The app must be able to find and display the products that are purchased most often by customers. 

. The app must be able to read product information from a custom SQL Server database by using an external list. 

. The app must be able to read from and write to the user profile. 

. The app must be able to make changes to lists by using the minimum permissions 

necessary. 

. The app must be able to read enterprise keywords. 

You need to configure permissions for the app. 

Which scopes and permissions should you use? (To answer, select the appropriate options from each drop-down list in the answer area.) 

Answer: 


Q10. DRAG DROP - (Topic 5) 

You have an app named TaskManager published at http://sharepoint.contoso.com/apps. 

You need to remove the app and ensure that users will no longer be able to use the app by using Windows PowerShell cmdlets. 

What should you do? (To answer, drag the appropriate code segments to the correct location or locations in the answer area. 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: