70-576 Exam Details

  • Exam Code
    :70-576
  • Exam Name
    :Designing and Developing Microsoft SharePoint 2010 Applications
  • Certification
    :Microsoft Certifications
  • Vendor
    :Microsoft
  • Total Questions
    :150 Q&As
  • Last Updated
    :Feb 02, 2022

Microsoft 70-576 Online Questions & Answers

  • Question 11:

    Your company has a SharePoint 2010 Web application that contains multiple site collections. You have a custom master page that will be used by every site collection in the application.You need to make sure that changes made to this custom master page are displayed across all site collections in the Web application.

    Which approach should you recommend?

    A. Use SharePoint Designer 2010 to add the new master page to each site collection.
    B. Use the Site Master Page Settings page in the Web browser to apply the new master page to the top-level site of each site collection.
    C. Manually upload the master page to the Master Page gallery of each site collection using the Web browser.
    D. Deploy a solution package using Visual Studio that includes the master page in a feature, and activate the feature in each site collection.

  • Question 12:

    You are designing an application in a SharePoint 2010 server farm for an international firm. The sites must be localized for the languages in different countries.The application must include support for the following functionality:

    .Feature-specific resource files .Language-specific Web Part package assemblies and resources .Language-specific Web template files .Language-specific _layout files

    You need to design a solution that meets all these requirements.

    Which approach should you recommend?

    A. Create a language pack for the specific language required and add it to the solution store before adding the corporate solution. Deploy the language pack and then deploy the solution.
    B. Create a language pack for the specific language required and add it to the solution store before adding the corporate solution. Deploy the solution and then deploy the language pack.
    C. Create a language pack for the specific language required and add it to the solution store after adding the corporate solution. Deploy the language pack and then deploy the solution.
    D. Create a language pack for the specific language required and add it to the solution store after adding the corporate solution. Deploy the solution and then deploy the language pack.

  • Question 13:

    You are designing multiple SharePoint 2010 features. You have the following requirements:

    .There must be three features, named Feature_1, Feature_2, and Feature_3.

    .Feature_1 must be dependent on Feature_2; Feature_2 must be dependent on Feature_3.

    .Feature_1 must be available to a site collection named Finance.

    You need to ensure that your feature design meets these requirements and follows the SharePoint Feature Activation Dependency Rules. Which approach should you recommend?

    A. Design Feature_1 and Feature_2 as visible; design Feature_3 as a hidden feature. Set the scopes for Feature_1, Feature_2, and Feature_3 to Site.
    B. Design Feature_1 and Feature_2 as visible; design Feature_3 as a hidden feature. Set the scopes for Feature_1 and Feature_2 to Site. Set the scope for Feature_3 to Web.
    C. Design Feature_1 and Feature_2 as visible; design Feature_3 as a hidden feature. Set the scope for Feature_1 to WebApplication. Set the scopes for Feature_2 and Feature_3 to Web.
    D. Design Feature_1, Feature_2, and Feature_3 as visible features. Set the scopes for Feature_1 and Feature_2 to Site. Set the scope for Feature_3 to Web.

  • Question 14:

    Your company has an existing SharePoint 2010 public-facing Web site. The Web site runs on multiple load-balanced Web front-ends.Your company recently changed its name.You are asked to design a plan to update the Web site content to reflect the company name change. You need to accomplish this with a minimum amount of developer hours and minimum impact on users.

    Which approach should you recommend?

    A. Create a PowerShell script to iterate through the site content and make the updates as needed.
    B. Create a custom delegate control with the new company name and copy it to the \14\Config directory of all Web front-end servers. Perform an IISReset on each Web front-end server.
    C. Create a custom application page with the new company name and copy it to the _layouts directory of all Web front-end servers.
    D. Add a property in the web.config file to store the company name. Then update the master pages and page layouts to return the name from that property.

  • Question 15:

    You are designing a SharePoint 2010 feature that will be included in a solution package.

    You have added a feature receiver to your feature.You need to ensure that the code in the feature receiver executes when the solution package is deployed to the Web front-end servers.

    Which approach should you recommend?

    A. Add your code to the FeatureInstalled method of the feature receiver.
    B. Add your code to the FeatureActivated method of the feature receiver.
    C. Add a FeatureInstalled node referencing the feature receiver assembly to the solution manifest file.
    D. Add a FeatureActivated node referencing the feature receiver assembly to the solution manifest file.

  • Question 16:

    You are designing a SharePoint 2010 application that allows users to enter contact information into a form.You need to design the application so that it displays a dialog box prompting users to validate their contact information before the data is saved.

    Which approach should you recommend?

    A. Create an application page that calls the SP.UI.ModalDialog class.
    B. Create an application page that calls the SP.UI.PopoutMenu class.
    C. Create a Web Part that calls the MessageBox class.
    D. Create a visual Web Part that calls the SP.UI.PopoutMenu class.

  • Question 17:

    Your developers have discovered an issue with a SharePoint 2010 application. The code has produced an exception and SharePoint has rendered an error page in the browser. The error page displays a Correlation ID and the time when the error occurred.You need the developers to investigate the problem by viewing logged exception messages.

    What are two possible ways to achieve this goal? (Each correct answer presents a complete solution. Choose two.)

    A. Open the SharePoint content database. Filter the EventLog table for rows with an EventTime column value the same as the time shown on the error page and with an EventData column value equal to the Correlation ID found on the error page.
    B. Open the Application Event Log on the server. Filter the events for an exception that occurred at the time shown on the error page, and with a Source value equal to the Correlation ID found on the error page.
    C. Search for an exception in the SharePoint Unified Logging Service (ULS) logs with the same Correlation ID and time stamp displayed on the error page.
    D. Use the PowerShell get-splogevent command, passing in the Correlation ID as a parameter, which will return a list of items in the ULS log with the same Correlation ID. Look for an exception that occurred at the time shown on the error page.

  • Question 18:

    You are designing a SharePoint 2010 application that stores data in a list named BaseList.

    This list contains 25,000 records.A view named ViewList filters data on a column named CreateDate. The CreateDate column is of type Date and Time.The ViewList view requires too much processing time when displaying BaseList data.Your

    design needs to improve the performance of the ViewList view when it displays the BaseList data.

    Which approach should you recommend?

    A. Enable the Display items in batches of the specified size property in the Item Limit option of ViewList.
    B. Set the Group By option of ViewList to group by the CreateDate column.
    C. Add a column index to BaseList based on the CreateDate column.
    D. Change the CreateDate column type to Date Only.

  • Question 19:

    You are designing a SharePoint 2010 intranet site.Each department has its own site collection. A link to each of the departments must appear in the global navigation for each site collection. You have implemented the SharePoint AspMenu control in the master page.Your design must specify the correct provider for the menu control.

    Which provider should you recommend?

    A. SPContentMapProvider
    B. SPSiteMapProvider
    C. PortalSiteMapProvider
    D. SPXmlContentMapProvider

  • Question 20:

    You are planning an upgrade to a SharePoint 2010 site that contains a feature named MyOriginalCapability. The MyOriginalCapability feature has a version number of 1.0.0.0.

    You have the following requirements:

    .Update the MyOriginalCapability feature to include new fields.

    .Deploy a new feature named MyEnhancedCapability that uses the new fields of the MyOriginalCapability feature.

    You need to plan the upgrade to meet the requirements.

    Which approach should you recommend?

    A. Increment the Version attribute of the MyOriginalCapability feature to 2.0.0.0, and include an activation dependency with a MinimumVersion property of 2.0.0.0 in the MyEnhancedCapability feature.
    B. Increment the Version attribute of the MyOriginalCapability feature to 2.0.0.0, and include a VersionRange element with EndVersion set to 2.0.0.0.
    C. Increment the Version attribute of the MyEnhancedCapability feature to 2.0.0.0, and include an activation dependency with a MinimumVersion property of 2.0.0.0 in the MyOriginalCapability feature.
    D. Increment the Version attribute of the MyEnhancedCapability feature to 2.0.0.0, and include a VersionRange element with EndVersion set to 2.0.0.0.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Microsoft exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 70-576 exam preparations and Microsoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.