Braindump2go New Updated Official Microsoft 70-488 Practice Tests Guarantee 100% Real Exam Questions and Answers! (106-123)

All Latest Updated Questions and Answers in Braindump2go 70-488 Exam Dumps will not take you a lot of time to comprehend and you can easily cover up the entire Microsoft 70-488 syllabus for your examination.Download Braindump2go Free 70-488 Sample Questions Now, Pass 70-488 Exam in advance!

Vendor: Microsoft
Exam Code: 70-488
Exam Name: Developing Microsoft SharePoint Server 2013 Core Solutions

1152 

QUESTION 106
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: D
Explanation:
* Visio 2013 and SharePoint Designer 2013 make it easy for business analysts, process consultants, and IT professionals to collaborate and build workflows.
* Thanks to some of the improvements with SharePoint workflow capabilities in concert with SharePoint Designer 2013, it is now easy to write workflows that respond to list events or even write workflows that wakeup on a timed schedule to perform some task.

QUESTION 107
Drag and Drop Question
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.)

wpsE2E0.tmp_thumb

Answer:

wpsFE0F.tmp_thumb

Explanation:
Box 1: Add a Content Search Web Part to a page
Box 2-3: Configure the query for a Content Search Web Part
In the Web Part, click the Content Search Web Part Menu arrow, and then click Edit Web Part.
In the Web Part tool pane, in the Properties section, in the Search Criteria section, click Change query.
Edit and change the query.
Box 4: (Search Result Web Part)
Here are some tools that make Cross-Site Publishing happen.
/ Content Search Web Part:
It allows to build your own query using a wizard, this means fetching the content you want to see, and then allows you to display them using predefined display templates. It uses Search to
query, which therefore allows us to show content from another Site.
/ Search Results Web Part:
It can either show the results of a typed query in the Search Box, which is the traditional Search Results we know. But, and this is key, the Search Results also allows you to build a Query using
the same Query Builder in the Content Search. In fact, I have found the Search Results to offer 95% of the same functionality as the Content Search. Therefore, it can also be used in Cross-Site
Publishing Scenarios.
Reference: Configure Search Web Parts in SharePoint Server 2013

QUESTION 108
Hotspot Question
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.)

wps1D52.tmp_thumb

Answer:

wps3392.tmp_thumb

Explanation:
* Manage Device Channels
The device channel feature is ideal for more complex SharePoint sites where you create a single site and author content for that site, but map the content to use different master pages and style
sheets that are specific to a device or group of devices. By using the device channel feature you can choose to show different content to different device channels using the same page and page
layout.
Reference: Configure a SharePoint site for mobile devices

QUESTION 109
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.    Open the site in SharePoint Designer.
From All Files, double-click the _cts folder and then select the MasterPages folder.
Create a folder.
Modify the JavaScript files by using Microsoft Notepad.
B.    Copy all the JavaScript files to a document library and modify them directly by using Microsoft Notepad.
C.    Open the site in SharePoint Designer.
From Master Pages select the JavaScript files to modify them.
D.    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.

Answer: C

QUESTION 110
Drag and Drop Question
Contoso. Ltd. uses SharePoint for document sharing, task management, and workflows.
Contoso, Ltd has a SharePoint portal with a URL of intranet.contoso.com.
The portal has 5,000 subsites. It is used by 50,000 users.
You develop a custom web level feature that allows users to see their tasks from every website on the portal.
You need to use a Windows PowerShell script to enable the web level feature in the subsites without adversely impacting the performance of the server.
You have the following script:

wpsC621.tmp_thumb

Which values should you include in Target 1, Target 2, Target 3 and Target 4 to complete the script? (To answer, drag the appropriate values to the correct targets in the answer area. Each value 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.)

wpsE0E2.tmp_thumb

Answer:

wpsF9EF.tmp_thumb

Explanation:
* Example:
Advanced Assignment
Objects are assigned to named stores for disposal.
You can dispose of objects by using the -Identity parameter with the Stop-SPAssignment command.
$siteScope = Start-SPAssignment
foreach($site in ($siteScope | Get-SPSite “http://server/*”))
{
$webScope = Start-SPAssignment
$web = $webScope | Get-SPWeb $site.RootWeb.Url
$web.Title = “Greetings from PowerShell”
$web.Update()
Stop-SPAssignment $webScope
}
Stop-SPAssignment $siteScope
Regardless of the level used, all objects are disposed of when the PowerShell runspace is closed.

QUESTION 111
Drag and Drop Question
Northwind Traders uses Microsoft Office 365 to share customer information between internal and external users. Northwind Traders plans to allow external sales managers to manage customers on the Office 365 site by providing a custom SharePoint autohosted app.
The custom web application will be hosted on Microsoft Azure.
You develop the autohosted app that allows all users on Office 365 to be able to read and write data in a SharePoint list from an ASP.NET web application.
You need to ensure that the custom web application will authenticate itself, get access tokens from the Microsoft Azure Access Control Service (ACS), and read to and write from a SharePoint list. You have the following code:

wps1FC8.tmp_thumb

Which code segments should you include in Target 1, Target 2 and Target 3 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.)

wps410E.tmp_thumb

Answer:

wps5B72.tmp_thumb

Explanation:
* Example (Target1, Target2) (TokenHelper.GetContextTokenFromRequest, TokenHelper.ReadAndValidateContextToken)
// The Page_load method fetches the context token and the access token.
// The access token is used by all of the data retrieval methods.
protected void Page_Load(object sender, EventArgs e)
{
string contextTokenString = TokenHelper.GetContextTokenFromRequest(Request);
if (contextTokenString != null)
{
contextToken =
TokenHelper.ReadAndValidateContextToken(contextTokenString,
Request.Url.Authority);
// etc,
}
* Example (Target 3, TokenHelper.GetClientContextWithAccessToken):
// This method retrieves information about the host web by using the CSOM.
private void RetrieveWithCSOM(string accessToken)
{
if (IsPostBack)
{
sharepointUrl = new Uri(Request.QueryString[“SPHostUrl”]);
}
ClientContext clientContext =
TokenHelper.GetClientContextWithAccessToken(
sharepointUrl.ToString(), accessToken);
}

QUESTION 112
Drag and Drop Question
A company uses SharePoint and Microsoft Dynamics CRM to manage customers.
External users log in to the SharePoint site by using forms-based authentication.
The company needs to authenticate users by using a custom claims provider.
You have the following requirements:
1. Site administrators must be able to locate users in CRM.
2. Site administrators must be able to select users based on their roles in CRM.
3. Site administrators must be able to confirm that users exist in CRM.
You need to implement the custom claims provider.
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.)

wps816A.tmp_thumb

Answer:

wps9652.tmp_thumb

Explanation:
Requirement 1:
* FillHierarchy.SupportsHierarchy property
When implemented in a derived class, determines whether the claims provider supports hierarchical display.
* FillHierarchy
If you want to display hierarchy on the left pane of the claims picker, you must implement the FillHierarchy method and the SupportsHierarchy property in the SPClaimProvider class.
Requirement 2:
FillSearch.SupportSearch
If you want to be able to search for claims in the People Picker control, you must implement the Fillsearch method and Microsoft.SharePoint.Administration.Claims.SupportSearch property.
The SupportsSearch must return true.
Requirement 3: FillResolve.SupportResolve
A People Picker with claims picking functionality is sometimes referred to as a claim picker. If you want to be able to resolve claims by using the type-in control of the claims picker, you must
implement this method and implement the SupportResolve() property to return true.
Incorrect:
* FillClaimsForEntity.SupportsEntityInformation
When you include additional claims in a user’s security token, you are augmenting claims. If you want to augment claims, you must implement the FillClaimsForEntity method. In addition, you
must also set the SupportsEntityInformation property to true in the SPClaimProvider class. In order for this method to be invoked, the SupportsEntityInformation must return true.

QUESTION 113
Hotspot Question
A web application that listens on port 80 has been created for Internet users to access your company’s SharePoint site. The web application uses claims-based authentication.
Users report that they are prompted for credentials when they access the site in their browser.
You need to enable anonymous access.
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.)

wpsBA28.tmp_thumb

Answer:

wpsD25A.tmp_thumb

Explanation:
* Permission Policy
On the SharePoint Central Administration website, in the Application Management section, click Manage web applications.
Click to highlight the web application whose permission policy that you want to manage.
In the Policy group of the ribbon, click Anonymous Policy.
In the Anonymous Access Restrictions dialog box, in the Zone list, click the zone for which you want the policy to apply.
In the Permissions section, select the permission policy that you want anonymous users to have, and then click Save.

QUESTION 114
Drag and Drop Question
You add a site column for an Enterprise Content Management (ECM) project by using the Site Column Designer in Visual Studio 2012.
You need to identify what the designer-generated XML will look like.
You have the following code:

wpsED4A.tmp_thumb

Which xml elements should you include in Target 1, Target 2, Target 3, Target 4 and Target 5 to complete the code? (To answer, drag the appropriate XML element to the correct targets in the answer area. Each XML element 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.)

wps84A.tmp_thumb

Answer:

wps1E4B.tmp_thumb

Explanation:
* Target 1, target 5:
Elements Element (Field)
Top-level element in a Feature manifest file that contains Feature element declarations.
Example:
<Elements
Id = “Text”>
</Elements>
* Example:
<?xml version=”1.0″ encoding=”utf-8″?>
<Elements xmlns=”http://schemas.microsoft.com/sharepoint/”>
<Field ID=”{060E50AC-E9C1-4D3C-B1F9-DE0BCAC300F6}”
Name=”Amount”
Type=”Currency”
/>
</Field></Elements>

QUESTION 115
Hotspot Question
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.)

wps44A0.tmp_thumb

Answer:

wps5A91.tmp_thumb

Explanation:
* For the unauthenticated users use the Anonymous policy.

QUESTION 116
Drag and Drop Question
You need to retrieve data about all the lists in a site by using the REST (Representational State Transfer) API.
You have the following code:

wps740B.tmp_thumb

Which code segments should you include in Target 1 and Target 2 to complete the 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.)

wps91F8.tmp_thumb

Answer:

wpsAB62.tmp_thumb

Explanation:
* HttpWebRequest “/_api/web/lists”
Example:
The code in the following example shows you how to request a JSON representation of all of the lists in a site by using C#. It assumes that you have an OAuth access token that you are storing in the accessToken variable.
C#
HttpWebRequest endpointRequest =
(HttpWebRequest)HttpWebRequest.Create(sharepointUrl.ToString() + “/_api/web/lists”);
endpointRequest.Method = “GET”;
// etc.
Reference: How to: Complete basic operations using SharePoint 2013 REST endpoints

QUESTION 117
The Contoso SharePoint on-premise intranet portal stores content in 50 site collections.
Contoso wants to display all content tagged with a metadata term on the main page of the portal.
You need to display all documents with the metadata term without using any custom code.
Which technology should you use?

A.    SPQuery with Site Collection set to the portal’s main page site collection
B.    Content Query Web Part (CQWP)
C.    Content Search Web Part (CSWP)
D.    SPSiteDataQuery

Answer: B
Explanation:
The ContentByQueryWebPart, commonly referred to as the Content Query Web Part, is a part of the Enterprise Content Management (ECM) functionality in Microsoft Office SharePoint Server.
It aggregates and displays list items within a site hierarchy.
The Content Query Web Part has the following limitations:
/You can only aggregate data within a single site collection.
/You can only aggregate list information.

QUESTION 118
Drag and Drop Question
You create a new Enterprise Content Management (ECM) project.
You add a content type to the Visual Studio Project by using the Content Type Designer in Visual Studio 2012.
You need to identify what the designer-generated XML will look like?
You have the following code:

wpsCC7A.tmp_thumb

Which XML elements should you include in Target 1, Target 2, Target 3, Target 4 and Target 5 to complete the code?(To answer, drag the appropriate XML elements to the correct targets in the answer area. Each XML element 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.)

wpsE94D.tmp_thumb

Answer:

wps289.tmp_thumb

Explanation:
* Target 1, target 5:
Elements Element (Field)
Top-level element in a Feature manifest file that contains Feature element declarations.
Example:
<Elements
Id = “Text”>
</Elements>
* Target 2, 3, 4
The FieldRefs element contains a collection of FieldRef elements. The FieldRef element is a reference to a column defined elsewhere, either at the site or list level.

QUESTION 119
Drag and Drop Question
You work on a SharePoint Enterprise Content Management (ECM) project.
You need to ensure that all Microsoft Word documents are converted to Portable Document Format (PDF) once they are published and approved.
You have the following code:

wps217F.tmp_thumb

Which code segments should you include in Target 1, Target 2, Target 3 and Target 4 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)

wps3703.tmp_thumb

Answer:

wps4D03.tmp_thumb

Explanation:
* ItemUpdated
Runs after an item has been updated in the list
* SPFileLevel.Published
SPFileLevel specifies the level of publication for a document.
Published: The document is published.

QUESTION 120
Hotspot Question
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.)

wps6B9B.tmp_thumb[2]

Answer:

wps9B05.tmp_thumb[2]

Explanation:
* Start a task process
Start a task process is used to assign a task to multiple participants.
Reference: Understanding Task Actions in SharePoint Designer 2013

QUESTION 121
You develop a SharePoint app to create an approval workflow for expense reports.
The app must collect user input during the workflow.
You need to use ASP.NET forms in the workflow.
Which form type should you use?

A.    Workflow modification form
B.    Workflow input form
C.    Workflow task form
D.    Workflow initiation form

Answer: D
Explanation:
An initiation form is opened when a user manually launches a workflow whose workflow definition is associated with the form. When the workflow kicks off, the user is presented with the initiation form and is prompted to enter information that the workflow will need.
For example, the user could enter a justification for a workflow initiating an approval for a new business expense.

QUESTION 122
You plan to create a workflow design by using Microsoft Visio 2013 and then import the design into SharePoint Designer 2013.
You need to ensure that you have branching capability.
Which shape should you use?

A.    Assign a Task
B.    Stage
C.    Loop
D.    Step

Answer: B
Explanation:
A stage can contain any number of shapes and may include branching.

QUESTION 123
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: BF
Explanation:
http://msdn.microsoft.com/en-us/library/ff798382.aspx


Braindump2go New Released Premium 70-488 Exam Dumps Guarantee You a 100% Exam Success Or We Promise Full Money Back! Download Microsoft 70-488 Exam Dumps Full Version From Braindump2go Instantly!

1162

http://www.braindump2go.com/70-488.html