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 131:

    You are designing a collection of Web Parts that will be packaged into a SharePoint 2010 application that you plan to market worldwide.In order to be accessible in many different languages, the following elements must comply with

    localization requirements: .The feature title and description .The UI property labels

    You need to design the Web Parts according to the localization requirements in a way that takes the fewest developer hours to implement and maintain. Which approach should you recommend?

    A. Include feature receivers that ensure the supported language packs are installed before continuing with the installation.
    B. Include code to programmatically create a new term set with localized labels, and reference these throughout your solution.
    C. Include resource files with localized labels, and reference these throughout your solution.
    D. Compile a different version of your solution for each language you intend to support.

  • Question 132:

    You are designing a solution on a SharePoint 2010 intranet site where administrative access to the SharePoint 2010 application server is not available.You need to ensure that site usage information is collected on search statistics for all the sites on the farm.

    Which approach should you recommend?

    A. Create a Windows service and schedule it to collect the search statistics according to a specified schedule.
    B. Create a SharePoint sandboxed solution to collect the search statistics.
    C. Write a console application to collect search statistics. Create a timer job to run the application according to a specified schedule.
    D. Write a console application to collect search statistics. Use Windows Task Scheduler to run the application at regular intervals.

  • Question 133:

    You are designing a maintenance plan for a SharePoint 2010 intranet site. You have the following requirements:

    .The site has 25 custom content types and 5 document libraries. One of the document libraries has more than 1,000 documents.

    .Every document in the site is associated with one of the custom content types.

    .Each document library has a single view, showing the name of the document and the person who last modified it.

    .Private views are not permitted in the site.

    .The site is used for collaboration and does not have any of the SharePoint publishing features enabled.

    You need to enable users to filter the documents in the large document library by content type.

    Which approach should you recommend?

    A. Activate the Metadata Navigation and Filtering feature. Modify the metadata navigation settings for the document library by adding Content Type to the list of selected hierarchy fields.
    B. Create a new site scope for each content type. For each scope, add a rule of type Property Query. Set the Property Restriction to include any item with the name of the content type of the scope.
    C. For each content type, create a new Web Part using the Content Query Web Part. Configure the Web Part to filter the documents in the document library by that content type.
    D. Go to the site navigation page and enable the Tree View option. Use the Tree View option to filter the documents in the document library.

  • Question 134:

    You are designing a SharePoint 2010 intranet site.Employees are responsible for recording their daily activities, which are stored in a third-party database. To accurately track Web traffic on the site, the IT administrator has requested that only one form be available from only one URL.You need to design an input form that employees can use from SharePoint.

    Which approach should you recommend?

    A. Create an InfoPath Web-enabled form that submits data directly to the third-party database. Publish the form to a SharePoint form library where users can access the form.
    B. Create a Silverlight Web Part that submits data directly to the third-party database. Add the Web Part to a single Web Part page that employees can access on the site.
    C. Create an application page that submits data directly to the third-party database. Deploy the application page to the _layouts directory using a solution package.
    D. Connect to the third-party database using Business Connectivity Services. Create an external content type, and then create an external list based on that content type. Allow users to enter their activities by adding new items to the list.

  • Question 135:

    You are designing a SharePoint 2010 application that displays information from an external database.You need to develop the application to meet the following requirements:

    .Remote connections to the external database are not allowed. .Data from multiple tables must be joined into a single list. .The list must be synchronized with the external database.

    Which approach should you recommend?

    A. Build a Web service to manage each table, and use the SPQuery object to join the data fields into a single list.
    B. Build a Web service to manage each table, use Business Connectivity Services (BCS) to import the individual tables into lists, and then create a new list that joins these external lists together.
    C. Build a Web service to join the data fields into a single list, and use BCS to synchronize the list with the external database.
    D. Build a Web service to join the data fields into a single list, and implement event receivers to synchronize the list with the external database.

  • Question 136:

    You are designing a SharePoint 2010 application. The code makes numerous calls to SPSite and SPWeb objects.The system and application performance is poor in the test environment. There is also a high level of memory use for IIS worker processes.You need to ensure that the application performance and high memory use issues are addressed.

    Which approach should you recommend?

    A. Use the Resource Throttling settings in Central Administration to increase site resource thresholds.
    B. Use the SPSite and SPWeb SharePoint 2010 PowerShell cmdlets.
    C. Ensure that the Dispose method of SPSite and SPWeb is called throughout the code.
    D. Ensure that the Close method of SPSite and SPWeb is called throughout the code.

  • Question 137:

    You are designing a SharePoint 2010 solution.You need to design the solution to meet the following requirements:

    .All sites must have a consistent structure when initially created.

    .All sites must include a document library that contains Word documents with searchable properties.

    .Site users must be able to generate a spreadsheet detailing the properties of the document library contents.

    Which approach should you recommend?

    A. Create a feature to create the required site structure programmatically. Create a content type for the document library. Create a custom workflow for the document library to allow users to generate the spreadsheet.
    B. Create a feature to create the required site structure programmatically. Use feature stapling to associate the feature with all site definitions. Create a custom action for the standard document library to allow users to generate the spreadsheet.
    C. Create a custom site definition for the sites and allow only that site definition to be used. Create a content type for the document library. Create a custom action for the document library to allow users to generate the spreadsheet.
    D. Create a custom site definition for the sites and allow only that site definition to be used. Create a content type for the document library. Create a custom event receiver to allow users to generate the spreadsheet.

  • Question 138:

    You are designing a SharePoint 2010 application to manage projects. The application has following requirements:

    .Users must have access to the CreateProject.aspx page.

    .All changes to the CreateProject.aspx page must be reflected on all project sites.

    You need to design a page that can be accessed from each project site.

    Which approach should you recommend?

    A. Create a master page and deploy it to the _layouts directory.
    B. Create a master page and deploy it to the _masterpages directory.
    C. Create an application page and deploy it to the _layouts directory.
    D. Create an application page and deploy it to the Pages library.

  • Question 139:

    You are designing a Windows application that accesses information stored on a SharePoint 2010 intranet site. The application displays employee information in a data grid sourced from a list on the Human Resources site.To filter and manipulate the employee details list, the design includes a class to cache the data that is accessed. The class keeps the SPWeb object open, but only retrieves data that is not already cached. You need to ensure proper memory utilization and resource management for the application.

    Which approach should you recommend?

    A. Implement the class with the IDisposable interface and allow the .NET Framework garbage collector to automatically manage the SPWeb object disposal.
    B. Implement the class with the IDisposable interface and explicitly dispose of the SharePoint SPWeb object when you are finished using it.
    C. Implement the class as a fully managed .Net Framework object and allow the .NET Framework garbage collector to automatically manage the SPWeb object disposal.
    D. Implement the class as a fully managed .Net Framework object and explicitly manage the SPWeb object using the ISPerformanceMonitor interface.

  • Question 140:

    You have a SharePoint 2010 application deployed in production. The application has a list with a single long-running workflow named Version A . You design a new version of the workflow named VersionB. You have the following

    requirements:

    .Existing instances of VersionA must continue to run until completed.

    .VersionB must always be instantiated in the future.

    .VersionA must no longer be instantiated.

    You need to design the solution to meet the requirements.

    Which approach should you recommend?

    A. Disable the Start this workflow when a new item is created property in the Start Options of VersionA
    B. Disable the Start this workflow when a new item is created property in the Start Options of VersionB
    C. Set the No New Instances property in the Remove Workflows settings of VersionA
    D. Set the Optionally limit the number of versions to retain property in the Versioning Settings of the list.

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.