Examcollection 70-488 Questions are updated and all 70-488 answers are verified by experts. Once you have completely prepared with our 70-488 exam prep kits you will be ready for the real 70-488 exam without a problem. We have Far out Microsoft 70-488 dumps study guide. PASSED 70-488 First attempt! Here What I Did.
Q1. - (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: A
Explanation:
Scenario:
In Element.xml file from Litware.Intranet.Templates.wsp we see:
<Property Name="Litware.teamsite.wt_ID"
Type="string" Value="WTLitwareTeamSite" />
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: 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
Q3. HOTSPOT - (Topic 5)
A web application that listens on port 80 has been created for Internet users to access your
company's SharePoint site.
Your company requires anonymous users to authenticate before they post content.
You need to change the permissions that are assigned to unauthenticated users.
On the Manage web applications page in Central Administration, which option should you
select? (To answer, select the appropriate menu item in the answer area.)
Answer:
Q4. - (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
Q5. DRAG DROP - (Topic 5)
Adventure Works uses SharePoint for managing project-related documents, information sharing, and tasks management. You develop a SharePoint-hosted app named TasksViewer and deploy it to the Corporate Catalog Site. This app is used only by the Project Management Office (PMO) group. Only users in the PMO group have permission to view and add this app to various project sites. The Adventure Works IT department creates a security group in Active Directory for the PMO.
Currently all of the apps are visible to the Everyone group.
You need to ensure that only users in the PMO group can see the app.
Which five 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:
Q6. - (Topic 5)
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
Explanation: You may want your workflow to collect information from the person who starts it, and then reference this information later in the workflow. For example, imagine that you are designing a workflow that assigns a document review task. In some workflows of this kind, it might make sense to always automatically assign the review task to the same participant and to always use the same formula for calculating the due date. But in your workflow, you want the person who manually starts the workflow to specify both the reviewer and the due date. You can set this up by adding custom fields to the workflow initiation form and requiring that the workflow be started manually.
Reference: Create a workflow initiation form
Q7. 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:
Q8. - (Topic 5)
A user deploys a sandbox solution. The user cannot activate the solution.
You need to ensure that the user can activate the solution.
What should you do? (Each correct answer presents a complete solution. Choose all that apply.)
A. Grant permission to the user to activate the solution.
B. Grant permission to the user to execute the solution.
C. Configure a local mode load-balancing scheme.
D. Stop the Microsoft User Code Host Service.
E. Configure a remote mode load-balancing scheme.
F. Start the Microsoft SharePoint Foundation Sandboxed Code Service.
Answer: A,F
Explanation:
A: Need to activate the feature that provisions the files.
siteCollection.Features.Add([guid_of_your)feature])
F: To enable sandboxed solutions by using Central Administration . Verify that you have the following administrative credentials: . On the home page of the Central Administration Web site, in the System Settings
section, click Manage services on server. . On the Services on Server page, in the Server box, select the server on which you want to enable sandboxed solutions. . In the Microsoft SharePoint Foundation Sandboxed Code Service row, in the Action column, click Start.
Q9. - (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. Use an app template and an app.master master file for branding.
B. 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.
C. 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 the HTML page in a declarative manner.
D. 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.
Answer: C
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
Q10. - (Topic 5)
You plan to create a SharePoint Business Process Automation (BPA) project.
You need to process items for approval with the least amount of developer effort.
Which tool should you use?
A. Remote Event Receiver
B. Out-of-the-box workflow
C. SharePoint Designer workflow
D. Work Item Timer Job
Answer: B
Explanation: Workflows in SharePoint 2013 allow you to model and automate business processes. These business processes can be as simple as a document approval process with a single approver (shown in example below), as complex as customer-facing product catalog using web service calls and database support, or as formidable as virtually any structured business process, full of conditions, loops, user inputs, tasks, and custom actions.
Example: Simple SharePoint workflow
Reference: Get started with workflows in SharePoint 2013