Microsoft 70-489 Certification New Released Sample Questions Free Download from Braindump2go (71-80)

2015 Timesaving Comprehensive Guides For Microsoft 70-489 Exam: Using Latst Released Braindump2go 70-489 Practice Tests Questions, Quickly Pass 70-489 Exam 100%! Following Questions and Answers are all the New Published By Microsoft Official Exam Center!

Vendor: Microsoft
Exam Code: 70-489
Exam Name: Developing Microsoft SharePoint Server 2013 Advanced Solutions

1122[2]

QUESTION 71
You need to implement the Web Part to retrieve the terms for the required term set.
Which code segment should you insert at line FE04?

wpsB9B3.tmp_thumb

A.    Option A
B.    Option B
C.    Option C
D.    Option D

Answer: A

Case Study: 4 – Adventure Works (QUESTION 72 – QUESTION 83)
Background
Adventure Works needs to develop a solution that tracks internal and external projects for both on-site and off-site employees. The company plans to create a project tracking site by using SharePoint.
Business Requirements
The company has the following requirements:
* The solution must use data from an existing line of business (LOB) system.
* The solution must provide secure access to data.
* The solution must allow users to search for projects by department or job role.
* The portal for the solution must contain an overview of all the active projects.
* Navigation for all sites must be managed centrally.
* Project members must be notified when project information changes.
* Project leads must be able to view a list of departments and job roles.
* Project leads must be notified when project tasks change.
* Users must be able to filter project documents by file type.
Technical Requirements
The solution must include the following components.

wpsDC41.tmp_thumb

Business Connectivity Services (BCS)
* You must use BCS to connect to a SQL Server database to retrieve project information and display it on a Project Information Page.
* The Admin Custom List app must use a remote event receiver to send an email message to each team member when information is updated.
* The Project external content type must use the root namespace proj_info.
Managed Metadata Service (MMS)
You must use MMS to ensure that team members can search and filter project information.
* Managed data must be grouped and controlled by department leaders. The project lead must have full control of the term store. The project leader creates groups for each department and assigns the leader of each department to the group manager role.
* Group managers must be able to grant Contribute permissions to the remaining team members in their department.
* You must create a Department term set to store team member roles and organize them by department types. The import file for the Department term set is the default for all new projects. The import file contains terms for System Architect, Programmer, Producer, and Manager. Each term is contained within two parent groups, Engineering or Production. Managers are members of the Production group only. All of the parent groups use a shared root-level term.
* You must create a site collection to store content that is used across multiple site collections. The site collection stores term sets for cross-site navigation and searches.
* The navigation site must use the URL http://adventureworks/sites/navigation.
* The publishing site must use the URL http://adventureworks/sites/portal.
* Navigation links on the top and left sides of each page must use term sets.
* The Document Library app named Project Documents must include a loca! term set for document types. The term set must contain the default terms .docx, .png, and -jpg.
* You must develop a console app to print the current term sets and each root term for the app by using the following style:
TermSet : name Term : name
Application Structure
Relevant segments of the app files are shown below: (Line numbers in the code segments are included for reference only and include a two-character prefix that denotes the specific file to which they belong.)
DocumentLibApp.es

wpsFF3D.tmp_thumb

TeamRemoteEventReceiver.es

wps1EEE.tmp_thumb

TodoEventReceiver.es

wps377D.tmp_thumb

ImportTermSet.es

wps4EF4.tmp_thumb

QUESTION 72
You need to implement the notifications for the custom list app named Admin.
Which code segment should you add at line ER08?

A.    public class EventReceiver1
B.    public class EventReceiver1 : SPListEventReceiver
C.    public class EventReceiver1 : SPItemEventReceiver
D.    public class EventReceiver1 : SPEventReceiverBase

Answer: C

QUESTION 73
Drag and Drop Question
You need to implement the term set import file to enable item assignments to be filtered.
How should you structure the term sets? (To answer, drag the appropriate term to the correct level in the answer area. Each term 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.)

wps703B.tmp_thumb

Answer:

wps8458.tmp_thumb

QUESTION 74
You need to ensure that end users can access the project’s external content type and model by using the provided naming specifications.
Which properties in the external content-type editor must you set when you create the external content type in SharePoint Designer? (Each correct answer presents part of the solution. Choose all that apply.)

A.    Set the value of the Display Name property to Project.
B.    Set the value of the Namespace property to http://adventureworks/sites/portal.
C.    Set the value of the Namespace property to proj_info.
D.    Set the value of the Name property to proj_info.
E.    Set the value of the Display Name property to proj_info.
F.    Set the value of the Name property to Project.

Answer: CE
Explanation:
From scenario:
(C) The Project external content type must use the root namespace proj_info.
E:

wps9D46.tmp_thumb

QUESTION 75
You need to create the term set for the Document Library app named Project Documents.
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)

A.    Insert the following code segment into line DL18:
TermStore termStore = taxonomySession.GetDefaultKeywordsTermStore();
B.    Insert the following code segment into line DL18:
TermStore termStore = taxonomySession.GetDefaultSiteCollectionTermStore();
C.    Insert the following code segment into line DL24:
myTermSet.CreateTerm("-png", 1033, Guid.NewGuid());
D.    Insert the following code segment into line DL24:
myTermSet.CreateTerm(".bmp", 1033, Guid.NewGuid());

Answer: AC
Explanation:
From scenario:
– You must develop a console app to print the current term sets and each root term for the app by using the following style: TermSet : name Term : name
– (A, C, Not B, not D) The Document Library app named Project Documents must include a loca term set for document types. The term set must contain the default terms .docx, .png, and -jpg.

QUESTION 76
Drag and Drop Question
You need to implement the site collection for managed navigation.
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.)

wpsBB51.tmp_thumb

Answer:

wpsCD1E.tmp_thumb

QUESTION 77
You need to configure a new site collection in Central Administration.
You will use the site collection to manage navigation terms.
What should you do?

A.    Create a site collection by using the Publishing Portal template.
B.    Create a site collection by using the Enterprise Search Center template.
C.    Create a site collection by using the Records Center template.
D.    Set the website address to http://adventureworks.com/sites/navigation

Answer: A

QUESTION 78
You need to implement the remote event receiver for the Admin Custom List app.
What should you do?

A.    Insert the following code segment at line RR05:
ListRemoteEventReceiver (properties);
B.    Insert the following code segment at line RR05:
ProcessOneWayEvent(properties);
C.    Insert the following code segment at line RR11:
ProcessEvent(properties);
D.    Insert the following code segment at line RR11:
ListRemoteEventReceiver(properties);

Answer: D
Explanation:
[OperationContractAttribute] SPRemoteEventResult ProcessEvent(SPRemoteEventProperties properties)
ProcessEvent This is a synchronous event handler.Use it to call code when a “before” event occurs .
[OperationContractAttribute(IsOneWay = true)] void ProcessOneWayEvent(SPRemoteEventProperties properties)
ProcessOneWayEvent This is an asynchronous event handler.
Use it to call code when an “after” event occurs .
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.eventreceivers.iremoteeventservice.aspx

QUESTION 79
You need to configure permissions for the publishing portal in the Term Store Manager.
What should you do?

A.    Add the URL http://adventureworks.com/sites/portal to the site collection access list.
B.    Add the URL http://adventureworks.com/sites/portal to the Contributors list.
C.    Add the URL http://adventureworks.com/navigation to the site collection access list.
D.    Add the URL http://adventureworks.com/pages/navigation.aspx to the site collection access
list.

Answer: B

QUESTION 80
You need to print out the terms and term sets for the Document Library app named Project Documents.
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)

A.    Insert the following code segment at line DL59:
Console.WriteLine("TermSet : = + termSet.Name + " Term : " + term.Name);
B.    Insert the following code segment at line DL70:
Console.WriteLine("TermSet : " + termSet.Name);
C.    Insert the following code segment at line DL35:
TaxonomySession taxonomy = TaxonomySession.GetTaxonomySession(clientContext);
D.    Insert the following code segment at line DL56:
Console.WriteLine("TermSet : " + terraSet.Name);
E.    Insert the following code segment at line DL35:
TaxonomyItem taxonomy = TaxonomySession.GetTaxonomySession(clientContext);

Answer: AC
Explanation:
From scenario:
– You must develop a console app to print the current term sets and each root term for the app by using the following style: TermSet: name Term: name
– You must create a Department term set to store team member roles and organize them by department types. The import file for the Department term set is the default for all new projects. The import file contains terms for System Architect, Programmer, Producer, and Manager. Each term is contained within two parent groups, Engineering or Production. Managers are members of the Production group only. All of the parent groups use a shared root-level term.


Braindump2go is one of the Leading 70-489 Exam Preparation Material Providers Around the World! We Offer 100% Money Back Guarantee on All Products! Feel Free In Downloading Our New Released 70-489 Real Exam Questions!

182[2]

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

Comments are closed.