Saturday, August 11, 2012

Microsoft 70-576 Certification Training - Computers - Certification

PRO: Designing and Developing Microsoft SharePoint 2010 Applications 70-576 Test

Exam Name: PRO: Designing and Developing Microsoft SharePoint 2010 Applications Exam Type: Microsoft Exam Code: 70-576CSharp Total Questions: 150

Question: 1You are helping an organization's executive team to design an automated approval process to standardize certaindocuments. You have the following requirements:The documents must be reviewed and approved by multiple teams in the approval chain..Each reviewer must provide feedback as part of completing a review..Each reviewer must either approve or reject the documents..After review, the document status must be changed; an e-mail must be generated to the document author andthe next reviewer in the approval chain; and a task should be created for the next reviewer in the approval chain.You must design a custom workflow solution for the document approval process on a SharePoint 2010 site. Whatshould the solution include?

A. An initiation form to collect the reviewer's feedback and a Simple activity to approve and reject the documentB. An association form to collect the reviewer's feedback and a Composite activity to support conditional activities such as approval and rejectionC. A task form to collect the reviewer's feedback and a Composite activity to support conditional activities such as approval and rejectionD. A task form to collect the reviewer's feedback and a Simple activity to approve and reject the document

Answer: C

Question: 2You are designing a SharePoint 2010 feature. The feature includes a feature receiver that executes code onactivation and deactivation. The feature receiver code interacts with a Web service, which could cause errorsbeyond your control. You need to ensure that the feature does not activate or deactivate if the Web servicecauses an error. Which approach should you recommend?

A. Wrap your code in a try-catch block. Log the error and issue another request to the Web service in the catch block.B. Wrap your code in a try-catch block. Log the error and throw an exception in the catch block.C. Wrap your code in a try-catch block. Only catch exceptions of type SPException.D. Wrap your code in a try-finally block. Log any issues your code encounters in the finally block.

Answer: B

Question: 3You are designing a SharePoint 2010 information architecture plan for a client that specifies the mechanics ofimplementing content type change control. The requirements for the change control plan specify that:Site managers can create site-specific content types based on the content types in the parent site..Content types must not be overwritten when changes are made to parent site content types..Site managers can change child site content types.You need to specify a content type change control plan that meets all these requirements. Which approachshould you recommend?

A. Direct the site manager to explicitly set the read-only property of the content type to true. Direct the site collection manager to make the specified change required in the child site to the content type at the site collection level.B. Direct the site manager to explicitly set the read-only property of the content type to true. Perform a push-down operation from the parent site to overwrite the required changes to the read-only content types in all the child sites.C. Define the content type as read-only at the child site level. Direct the site manager to explicitly set the read- only property of the content type to false to make changes to the content type. Then change the read-only property to true.D. Define the content type as sealed. Direct the site manager to explicitly set the sealed property of the content type to false to make changes to the content type. Then change the sealed property of the content type to true. Page 1 of 49 Exam Name: PRO: Designi ng and Developing Microsoft SharePoint 2010 Applications Exam Type: Microsoft Exam Code: 70-576CSharp Total Questions: 150

Answer: C

Question: 4You are designing a SharePoint 2010 application to store 50 GB of digital assets, including audio and video filesthat are up to 20 MB in size. You have the following requirements:The disk storage system must use standard hard drives and must be configured to optimize read performance..The SharePoint 2010 database uses Microsoft SQL Server Express 2008..The application must leverage standard SharePoint 2010 components to limit the requirement for customdevelopment. You need to design a storage solution that meets all of these requirements. Which approach shouldyou recommend?

A. Enable FILESTREAM storage for a Microsoft SQL Server Express 2008 database on a RAID 0 disk system. Then install and configure remote Binary Large Object (BLOB) storage in SharePoint 2010.B. Store the assets directly in Microsoft SQL Server Express 2008 and create multiple content databases on a RAID 0 disk system.C. Install and configure support for external BLOB storage for SharePoint 2010 and use the ISPExternalBinaryProvider interface to manage files on a RAID 0 disk system.D. Install and configure support for external BLOB storage for SharePoint 2010 and configure a Microsoft SQL Server Express 2008 database to store BLOBs on a RAID 5 disk system.

Answer: A

Question: 5.You are designing a SharePoint 2010 application that stores information about each machine in a factory. Thisinformation includes an inventory of parts, the machine's maintenance history, and a document library of repairmanuals for each machine in Microsoft Word format. The application must:Establish links between the factory machine data, the machine part inventory, the maintenance history, and therepair manuals to allow the display of additional fields from the other lists..Enforce relational integrity between the data to create custom views for various business users..Allow nontechnical users to update the individual list data and views, as well as to update the manuals..Enforce relationships that allow cascade deletes of items from the machine parts list when items are deleted fromthe machine list, but prevent data in the machine parts list from being orphaned. You need to design a dataaccess plan that meets all these requirements and allows all data to be managed within the SharePoint 2010system.Which plan should you recommend?

A. Create tables in Microsoft SQL Server for each set of inventories. Create relationships with primary and foreign keys linking the tables. Use Business Connectivity Services (BCS) to connect SharePoint 2010 lists to these tables to manage the data.B. Create tables in Microsoft SQL Server for each set of inventories. Create relationships with primary and foreign keys linking the tables. Store machine part manuals in a SharePoint document library and use event receivers to synchronize data in the lists and libraries.C. Use SharePoint 2010 lists and document libraries to store data. Create relationships using lookup fields and relationship joins between the lists and document libraries.D. Use SharePoint 2010 lists and document libraries to store data. Create a custom workflow to update information in the lists and document libraries.

Answer: C

Question: 6You are designing a SharePoint 2010 solution that allows users to enter address information for contacts into alist named Address. You have the following requirements:Ensure that users enter full nine-digit zip codes for the address information. Page 2 of 49 Exam Name: PRO: Designing and Developing Microsoft SharePoint 2010 Applications Exam Type: Microsoft Exam Code: 70-576CSharp Total Questions: 150

.Display a custom message indicating that a zip code is invalid if the entered zip code does not match the fullnine-digit requirements. You need to ensure that the application is designed to meet these requirements. Whichapproach should you recommend?

A. Create a custom command.B. Create a Datasheet view on the Address list.C. Use the Form Options of the Address list.D. Create a formula on the column.

Answer: D

Question: 7You are designing a SharePoint 2010 solution that stores employee information in a list named Employees andcompany information in a list named Company. Each company has one or more employees. You need torecommend that a developer add a new column so that a one-to-many relationship is created between theCompany list and Employees list. Which approach should you recommend?

A. Add an External Data column on the Employees list.B. Add a Lookup column on the Employees list.C. Add a Managed Metadata column on the Company list.D. Add a Lookup column on the Company list.

Answer: B

Question: 8You are using Business Connectivity Services to design a SharePoint 2010 application that connects to anexternal database. The database users have accounts for authentication that are different from their ActiveDirectory accounts. You have a requirement to allow users to connect to the external database without promptingthe user for credentials. You need to store user credentials and use these credentials when connecting to theexternal database. Which approach should you recommend?

A. Create a target application that uses the Microsoft Single Sign-On Service. Select the Connect with Impersonated Custom Identity option when creating the connection to the database.B. Create a target application that uses the Secure Store Service. Select the Connect with Impersonated Custom Identity option when creating the connection to the database.C. Create a target application that uses the Single Sign-On Service. Select the Connect with User's Identity option when creating the connection to the database.D. Create a target application that uses the Secure Store Service. Select the Connect with User's Identity option when creating the connection to the database.

Answer: B

Question: 9You are designing an external binary large object (BLOB) store provider by implementing the ISP External BinaryProvider interface. The farm has existing sites that contain content. Your implementation has been verified to beworking correctly. You need to ensure that content within existing sites is moved using the external BLOB storeprovider. You also must ensure that the solution does not require further custom coding. Which approach shouldyou recommend?

A. Perform a backup and restore on each site.B. Perform a backup and restore of each content database.C. Perform a backup and restore on each site collection.D. Perform a backup and restore of the configuration database.

Page 3 of 49 Exam Name: PRO: Designing and Developing Microsoft SharePoint 2010 Applications Exam Type: Microsoft Exam Code: 70-576CSharp Total Questions: 150

Answer: C

Question: 10.You are designing a SharePoint 2010 application that includes a Task list. You have the following requirements:For each task, allow users to specify one of three values for an item named Phase using a drop-down menu..Allow contributors to add new values for the Phase item. You need to design this application without usingcustom code. Which approach should you recommend?

A. Create a Multiple lines of text field type on the Task list.B. Create a Single line of text field type on the Task list.C. Create a Choice field type on the Task list that gets values from a custom list.D. Create a Lookup field type on the Task list that gets values from a custom list.

Answer: D

Question: 11You are designing an asset management solution using SharePoint 2010. You need to design a solution thatmeets the following requirements:Binary large objects (BLOBs) cannot be stored in Microsoft SQL Server..There can be no custom development or third-party products.Which approach should you recommend?

A. Install and configure Remote BLOB Storage and enable the content databases to use Remote BLOB Storage.B. Install and configure Remote BLOB Storage and enable the configuration databases to use Remote BLOB Storage.C. Install and configure an external BLOB store provider and enable the content databases to use the external BLOB store provider.D. Install and configure an external BLOB store provider and enable the configuration databases to use the external BLOB store provider.

Answer: A

Question: 12You need to specify the correct artifacts to use in a SharePoint 2010 application for a school district. The schooldistrict's administrator needs to be able to search for student information on an intranet SharePoint 2010 portal.Student information is currently available in another database, which supports an Open Database Connectivity(ODBC) driver. You need to design the solution to meet the following requirements:Provide a user interface to search for a student based on name..Enable the administrator to select the correct student name from the search results..Provide a student header section that displays the primary student identity information, which will enable theadministrator to correlate any new information with the correct student..Provide additional data entry pages to add or update additional student information.Which approach should you recommend?

A. Design HTML Web pages to render the student details. Install these pages under the /templates/_layouts/1033 folder and load these pages in Web Parts.B. Design connected Web Parts to share information among search data entry, student header information, and new data entry information Web Parts.C. Design a user control and load this control in a Web Part to search for a student. Then render the student details in a SharePoint page.D. Design a Web Part to search for a student. Then render the student record details in a SharePoint page.

Answer: B

Page 4 of 49

Original Resource :

Visit 70-576 Link : 70-576 Download PDF Link : 70-576





iAutoblog the premier autoblogger software

No comments:

Post a Comment