Microsoft 70-573 Exam Overview:
| Certification Vendor: | Microsoft |
|---|---|
| Exam Name: | TS: Microsoft Office SharePoint Server 2010, Application Development |
| Exam Number: | 70-573 |
| Passing Score: | 700 (on 1000 scale) |
| Exam Price: | USD 150 (varies by region) |
| Real Exam Qty: | 40-60 |
| Exam Duration: | 120 minutes |
| Available Languages: | English |
| Exam Format: | Case studies, Multiple choice, Scenario-based questions |
| Certificate Validity Period: | Retired (no longer available) |
| Related Certifications: | Microsoft Certified Technology Specialist (MCTS): SharePoint 2010 |
| Sample Questions: | Microsoft 70-573 Sample Questions |
| Exam Way: | Proctored exam (online or test center, depending on Microsoft certification delivery at the time) |
| Pre Condition: | Recommended experience with C#, ASP.NET, and SharePoint 2010 development concepts |
| Official Syllabus URL: | https://learn.microsoft.com/en-us/previous-versions/education/certifications |
Microsoft 70-573 Exam Syllabus Topics:
| Section | Objectives |
|---|---|
| Data Access and Integration | - LINQ to SharePoint and data querying - SharePoint object model (server-side API) - Business Connectivity Services (BCS) |
| Security and Administration | - Permissions and role management - Authentication and authorization in SharePoint |
| Workflows and Business Logic | - SharePoint workflows development - Business process automation |
| UI and Branding | - Master pages and page layouts - Custom branding and theming |
| SharePoint Development Platform | - SharePoint architecture and development model - Site collections, sites, and lists |
| Custom Solutions and Components | - Event receivers and features - Web Parts development and deployment |
Microsoft TS: Office SharePoint Server, Application Development (available in 2010) Sample Questions:
You have a helper method named CreateSiteColumn that contains the following code segment.
private static void CreateSiteColumn(SPWeb web, string columnName) { }
You need to add a new site column of type Choice to a SharePoint site by using the helper method.
Which code segment should you include in the helper method?
- A. web.Fields.Add(columnName, SPFieldType.Choice, true);
- B. web.Lists[0].Fields.Add(columnName, SPFieldType.Choice, True);
- C. web.Lists[0].Views[0].ViewFields.Add(columnName);
- D. SPField field = new SPFieldChoice(System.web.Lists[0].Fields, columnName);
Explanation: Only visible for BraindumpQuiz members. You can sign-up / login (it's free).
You create a SharePoint site by using the Document Center site template.
You need to ensure that all documents added to the site have a document ID. The document ID must
include the date that the document was added to the site.
What should you do?
- A. Modify the DocIdRedir.aspx page.
- B. Register a class that derives from DocumentIdProvider.
- C. Modify the Onet.xml file of the site.
- D. Register a class that derives from DocumentId.
Explanation: Only visible for BraindumpQuiz members. You can sign-up / login (it's free).
You have a SharePoint site that has the URL http://contoso.com/hr.
You are creating a new Web Part.
You need to create a reference to the current subsite without having to dispose of any returned objects.
Which code segment should you use?
- A. SPSite siteCollection = new SPSite("http://www.contoso.com");SPWeb site = siteCollection.RootWeb;
- B. SPWeb site = SPContext.Current.Web;
- C. SPSite siteCollection = new SPSite("http://www.contoso.com");SPWebCollection site = siteCollection.AllWebs;
- D. SPSite site = SPContext.Current.Site;
Explanation: Only visible for BraindumpQuiz members. You can sign-up / login (it's free).
You develop a custom master page.
You need to ensure that all pages that use the master page contain a specific image.
Page developers must be able to change the image on individual pages. The master page must be
compatible with the default content page.
What should you add to the master page?
- A. a ContentPlaceHolder control
- B. an HTML Div element
- C. a PlaceHolder control
- D. a Delegate control
Explanation: Only visible for BraindumpQuiz members. You can sign-up / login (it's free).
You create a Web Part that programmatically updates the description of the current SharePoint site.
The Web Part contains the following code segment. (Line numbers are included for reference only.)
01 SPSecurity.RunWithElevatedPrivileges(delegate()
02 {
03 SPSite currSite = SPContext.Current.Site;
04 SPWeb currWeb = SPContext.Current.Web;
05 using (SPSite eSite = new SPSite(currSite.ID))
06 {
07 using (SPWeb eWeb = eSite.OpenWeb(currWeb.ID))
08 {
09 eWeb.AllowUnsafeUpdates = true;
10 currWeb.Description = "Test";
11 currWeb.Update();
12 eWeb.AllowUnsafeUpdates = false;
13 }
14 }
15 });
Users report that they receive an Access Denied error message when they use the Web Part. You need to ensure that all users can use the Web Part to update the description of the current site.
What should you do?
- A. Change lines 09 and 12 to use the currWeb variable.
- B. Remove lines 10 and 11.
- C. Change lines 10 and 11 to use the eWeb variable.
- D. Remove lines 09 and 12.
Explanation: Only visible for BraindumpQuiz members. You can sign-up / login (it's free).
We're so confident of our products that we provide no hassle product exchange.


By Hardy

