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 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:
Q2. - (Topic 5)
You create a branding package for Contoso, Ltd. You export the design package from the development environment. The solution you build uses custom query rules and result types. You activate the following features:
SharePoint Server Publishing Infrastructure
Search Config Data Content Types
Search Config Site Columns
Search Config Template
You import the package into the production environment. You observe that the search configuration did not import properly, and some images are missing.
You need to ensure that search and branding work properly on the production server.
Which two actions should you perform? Each correct answer presents part of the solution.
A. Check in and publish all design assets. Export the package.
B. Import the package. Check in and publish all design assets.
C. On the development server, activate the Search Config List Instance feature. Export the design package.
D. On the production server, activate the Search Config List Instance feature. Import the design package.
Answer: B,C
Explanation:
* Search Config List Instance Features
Provisions a list to enable the import and export of Search Configurations.
Q3. - (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: B
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
Q4. - (Topic 5)
A company uses SharePoint as its collaboration platform.
The SharePoint site collection has many inactive sites.
You need to identify the inactive sites in each web application of the farm by using
Windows PowerShell scripts.
Which property should you evaluate?
A. $site.DeadWebNotificationCount
B. $site.ExpirationDate
C. $site.CertificationDate
D. $site.LastContentModifiedDate
E. $site.CurrentResourceUsage
Answer: D
Explanation: How to find Most Active SharePoint Site Collections?
Well, SPSite object has LastContentModifiedDate property, why don't we use it? Here is
the nifty PowerShell script to find Most active Site collections based on content modified
date. In a reverse, this can be used to find all In-active site collections also.
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
Get-SPWebApplication "https://sharepoint.company.com" | Get-SPSite -Limit All | foreach {
Write-Host $_.URL $_.LastContentModifiedDate
}
Reference: Find Active Inactive Site Collections in SharePoint
http://www.sharepointdiary.com/2012/12/find-active-inactive-site-collections.html
Q5. DRAG DROP - (Topic 5)
You troubleshoot the sandbox solutions that your team builds.
You need to redeploy a sandbox solution. You also need to identify which process must be debugged.
Where should you redeploy the solution, and which process should you debug? (To answer, drag the appropriate statements to the correct location or locations in the answer area. Each statement 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 5)
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:
Q7. 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:
Q8. DRAG DROP - (Topic 5)
You plan to create a search-driven navigation that supports the Cross-site Publishing Feature.
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:
Q9. DRAG DROP - (Topic 5)
You create SharePoint apps for multiple clients.
Each client has a unique environment with specific requirements.
You need to choose the appropriate hosting location for each app.
What should you do? (To answer, drag the appropriate hosting options to the correct description in the answer area. Each hosting option 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:
Q10. - (Topic 5)
You create a cloud-hosted SharePoint app.
You must make the app available in the SharePoint Store for customers to install on their host webs.
You need to keep the style and navigation of the app the same as the host web of the app after it is installed by any customer.
What should you do?
A. Add a reference to SP.UI.Controls.js on the host web. Pass the AppUrl parameter to the host web. Apply branding to the host web.
B. Copy the CSS file from the app to the host web. Run the Chrome control to convert the CSS file to the host web format. Apply the styles contained in the CSS file to the host web.
C. Use a Chrome control to find the differences in the styles between the host web and the app. Resolve all of the differences by using JavaScript.
D. Add a reference to the SP.UI.Controls.js file located in the new /_layouts/15 directory. Pass the HostUrl parameter to the start page of the app. Use the Chrome control in JavaScript.
Answer: D
Explanation: Microsoft allows developers to import a very basic version of the SharePoint 2013 chrome into their apps without having to manually create matching HTML controls. The functionality for this can be found in the SP.UI.Controls.js file located in the new /_layouts/15 directory. To use the chrome control, first add a reference to SP.UI.Controls.js (make sure you've already loaded the requisite JQuery files and other dependencies), then add an empty <div> to your page markup at or near the top of the page.
Reference: Using the Chrome Control in SharePoint 2013 Apps
Q11. HOTSPOT - (Topic 1)
You need to select the app experience for the CourierMobile app.
In the App for Office 2013 dialog window, which configuration option should you select? (To answer, select the appropriate configuration option in the answer area.)
Answer:
Q12. - (Topic 5)
You have an app named TaskManagerApp that is 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.
Which Windows PowerShell cmdlets should you run?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: A
Explanation: * Get-SPAppInstance
Use the Get-AppInstance cmdlet to get a collection of app instances that are installed on
an SPWeb object.
*Uninstall-SPAppInstance
Use the Uninstall-SPAppInstance cmdlet to uninstall an instance of an app. This cmdlet is
required to be run before a migration process.
-------------EXAMPLE--------------
$instance = Get-SPAppInstance -AppInstanceId $instance.Id
Uninstall-SPAppInstance -Identity $spapp
This example uninstalls an instance of an app.
Incorrect:
Not B, not D: get-SPWebApplication
The Get-SPWebApplication cmdlet returns all Web applications that match the scope given
by the Identity parameter. The Identity can be the name of the name, URL, or GUID of the
Web application. If no Identity is specified, all Web applications are returned.
EXAMPLE 1----------------------
$w = Get-SPWebApplication http://sitename
This example gets the Web application for http://sitename and stores it in a variable.
Not C: Disable-SPFeature
The Disable-SPFeature cmdlet disables a SharePoint Feature at the given scope.
Reference: Uninstall-SPAppInstance
Q13. 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:
Q14. DRAG DROP - (Topic 5)
You work on a SharePoint Enterprise Content Management (ECM) project.
You develop the Litware Document Approval workflow that enables a group of people to review, approve, or reject documents and document changes.
You need to assign the Litware Document Approval workflow to the Document content type.
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:
Q15. DRAG DROP - (Topic 4)
You need to ensure that all of the solutions are deployed in the correct order.
You have the following code:
Which code segments should you include in Target 1, Target 2, Target 3, Target 4, Target 5 and Target 6 to complete the code? (To answer, drag the appropriate code segments to the correct targets 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: