Free Braindump2go Latest Microsoft Exam Dumps

Collection of Braindump2go LatestMicrosoft Exam Questions and Dumps for free Download

2015 100% Pass Guarantee: Braindump2go 70-331 Exam Questions and Answers from Real 70-331 Exam Dumps! (61-70)

New Released Braindump2go Microsoft 70-331 Dumps PDF – Questions and Answers Updated with Microsoft Official Exam Center! Visit Braindump2go and download our 70-331 Exam Questions Now, Pass 70-331 100% at your first time!

Vendor: Microsoft
Exam Code: 70-331
Exam Name: Microsoft Core Solutions of Microsoft SharePoint Server 2013

Keywords: 70-331 Dumps,70-331 Dumps PDF,70-331 Study Guide,70-331 Braindump2,70-331 Exam Questions,70-331 Exam Prep,70-331 E-Book

QUESTION 61
A company named Contoso, Ltd. has a SharePoint farm. The farm has one Search service application configured. The Search service application contains five crawl databases, all of which contain content.
Contoso plans to crawl knowledge base content from its partner company Litware, Inc. The knowledge base content must be stored in a dedicated crawl database.
You need to configure crawling.
What should you do?

A.    Add a crawl database that contains the Litware knowledge base to the existing Search service application.
B.    Provision a new Search service application. Configure the service application to crawl the Litware knowledge
base content.
C.    Set the MaxCrawlDatabase parameter to 6.
D.    Create a dedicated Microsoft SQL Server instance for the Litware crawl database.

Answer: B
Explanation:
The maximum number of crawl databases is 5 per Search service application so we need another Search service application.
This maximum limit is increased to 15 with an Office 2013 update but the question doesn’t mention that this update is installed so we have to assume the question was written before the update was released.

QUESTION 62
Hotspot Question
The application log in the Windows Event Viewer shows object caching errors. You resolve the errors by modifying a web application in the farm.
After you resolve the errors, users are unable to access sites in the web application.
You need to restore user access to the sites.
On the Manage Web Applications page, which option should you configure? (To answer, select the appropriate option in the answer area.)
 
Answer:
 

QUESTION 63
Drag and Drop Question
You are configuring permission levels for two user groups named Architects and Sales.
You have the following requirements for SharePoint site permissions:
– Architects must be able to view website usage reports.
– Sales must be able to edit documents online.
You need to configure the appropriate permission levels for each group.
Which permission levels should you assign? (To answer, drag the appropriate permission levels to the correct group or groups in the answer area. Each permission level 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:
 

QUESTION 64
A company uses SharePoint 2013 Server as its intranet portal. The Marketing department publishes many news articles, press releases, and corporate communications to the intranet home page.
You need to ensure that the Marketing department pages do not impact intranet performance.
Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)

A.    In Central Administration, set up a User Policy for the Super User and Super Reader accounts.
B.    Configure IIS to use the Super User and Super Reader accounts for caching.
C.    Use the Farm Configuration Wizard to configure the Super User and Super Reader accounts.
D.    Use Windows PowerShell to add the Super User and Super Reader accounts.

Answer: AD
Explanation:
A: The way to correct this problem is to first create two normal user accounts in A
D. These are not service accounts. You could call them domain\superuser and domain\superreader, but of course that’s up to you. The domain\superuser account needs to have a User Policy set for that gives it Full Control to the entire web application.
D: If you are using any type of claims based authentication you will need to use Windows PowerShell. And Windows PowerShell is the hipper more modern and sustainable option anyway. If you are using classic mode authentication run the following cmdlets on one of your SharePoint servers:
$w = Get-SPWebApplication “http://<server>/”
$w.Properties[“portalsuperuseraccount”] = “domain\superuser” $w.Properties[“portalsuperreaderaccount”] = “domain\superreader” $w.Update()
If you are using claims based authentication run these cmdlets on one of your SharePoint servers:
$w = Get-SPWebApplication “http://<server>/”
$w.Properties[“portalsuperuseraccount”] = “i:0#.w|domain\superuser” $w.Properties[“portalsuperreaderaccount”] = “i:0#.w|domain\superreader” $w.Update()
Note:
* If you have a SharePoint Publishing site and you check the event viewer every once in a while you might see the following warning in there:
Object Cache: The super user account utilized by the cache is not configured. This can increase the number of cache misses, which causes the page requests to consume unneccesary system resources. To configure the account use the following command
‘stsadm -o setproperty -propertyname portalsuperuseraccount -propertyvalue account -url webappurl’. The account should be any account that has Full Control access to the SharePoint databases but is not an application pool account. Additional Data: Current default super user account: SHAREPOINT\system
This means that the cache accounts for your web application aren’t properly set and that there will be a lot of cache misses. If a cache miss occurs the page the user requested will have to be build up from scratch again. Files and information will be retrieved from the database and the file system and the page will be rendered. This means an extra hit on your SharePoint and database servers and a slower page load for your end user.
Reference: Resolving “The super user account utilized by the cache is not configured.”

QUESTION 65
You are managing a SharePoint farm.
Diagnostic logs are rapidly consuming disk space.
You need to minimize the amount of log data written to the disk.
Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)

A.    Set the log event level to Information.
B.    Set the log event level to Verbose.
C.    Set the log trace level to Medium.
D.    Set the log trace level to Verbose.
E.    Set the log event level to Warning.
F.    Set the log trace level to Monitorable.

Answer: EF
Explanation:
E: Event Levels
Warning, Level ID 50
Information, Level ID: 80
Verbose, Level ID: 100
F: Trace levels:
Monitorable: 15
Medium: 50
Verbose: 100
Note: When using the Unified Logging System (ULS) APIs to define events or trace logs, one of the values you must supply is the ULS level. Levels are settings that indicate the severity of an event or trace and are also used for throttling, to prevent repetitive information from flooding the log files.
Reference: Trace and Event Log Severity Levels

QUESTION 66
A company’s SharePoint environment contains three web applications. The root site collections of the web applications host the company intranet site, My Sites, and a Document Center.
SharePoint is configured to restrict the default file types, which prevents users from uploading Microsoft Outlook Personal Folder (.pst) files.
The company plans to require employees to maintain copies of their .pst files in their My Site libraries.
You need to ensure that employees can upload .pst files to My Site libraries.
In which location should you remove .pst files from the blocked file types?

A.    The File Types area of the Search service application section of Central Administration
B.    The General Security page in the site settings for the site collection
C.    The Blocked File Types page in the site settings for the site collection
D.    The General Security section of the Security page of Central Administration

Answer: D

QUESTION 67
Drag and Drop Question
A company has an Active Directory Domain Services (AD DS) domain and a SharePoint
environment. The SharePoint environment includes a team site for each department.
All domain users have Read permissions on the root site. Currently only Human Resources department members have access to the Human Resources team site.
You have the following requirements for the Human Resources site:
– Employees who are not members of the Human Resources department can view only content that is not marked as sensitive.
– Human Resources department members can view all content.
You need to configure permissions for the Human Resources site.
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:
 

QUESTION 68
Drag and Drop Question
You are managing a SharePoint farm that contains the following four sites:
– Site1 and Site2 are in the root site collection and contain publicly accessible content.
– Site3 is a subsite of Site1, and contains confidential content.
– Site4 is a subsite of Site2, and contains confidential content.
All SharePoint sites within the farm must use the principle of least privilege.
You need to plan the site authorization settings.
What should you do? (To answer, drag the appropriate terms to the correct site or sites 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.)
 
Answer:
 

QUESTION 69
Hotspot Question
You are managing a SharePoint document library app named App1.
You need to stop inheritance for App1.
On which page should you modify this setting? (To answer, select the appropriate page link in the answer area.)
 
Answer:
 

QUESTION 70
Contoso, Ltd. recently merged with Fabrikam, Inc. Each company has an Active Directory Domain Services (AD DS) domain. You are managing a SharePoint farm in the contoso.com domain.
You need to enable users in the fabrikam.com domain to access the Contoso SharePoint farm and prevent users in the contoso.com domain from accessing resources in the fabrikam.com domain.
Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)

A.    Configure a two-way forest trust from the fabrikam.com domain to the contoso.com domain.
B.    Add the fabrikam.com AD security groups to the SharePoint farm.
C.    Configure a two-way forest trust from the contoso.com domain to the fabrikam.com domain.
D.    Add the contoso.com AD security groups to the SharePoint farm.
E.    Configure a one-way forest trust from the fabrikam.com domain to the contoso.com domain.
F.    Configure a one-way forest trust from the contoso.com domain to the fabrikam.com domain.

Answer: BF
Explanation:
F: This is a one-way trust.
The resource is in the Contoso domain. Contoso need to trust Fabrikam.
B: The users in Fabrikam need to have access to Contoso resources. The fabrikam.com AD security groups should be added to the SharePoint Farm.


Instant Download Braindump2go New Released Microsoft 70-331 Exam Dumps PDF & VCE! Enjoy 1 year Free Updation! 100% Exam Pass Guaranteed Or Full Money Back!

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

, , , , ,

Comments are currently closed.