- Exam Code: 70-573
- Exam Name: TS: Office SharePoint Server, Application Development (available in 2010)
- Updated: Sep 03, 2026
- Q & A: 150 Questions and Answers
Earning the Microsoft TS: Office SharePoint Server, Application Development (available in 2010) tells employers your skills meet Microsoft standards, which is exactly why the exam is demanding. Actual4Dumps prepares you for the 70-573 exam with 150 practice questions aligned to the official 2026 objectives.
| Certification Vendor: | Microsoft |
|---|---|
| Exam Name: | TS: Microsoft Office SharePoint Server 2010, Application Development |
| Exam Number: | 70-573 |
| Certificate Validity Period: | Retired (no longer available) |
| Exam Price: | USD 150 (varies by region) |
| Real Exam Qty: | 40-60 |
| Related Certifications: | Microsoft Certified Technology Specialist (MCTS): SharePoint 2010 |
| Exam Format: | Multiple choice, Scenario-based questions, Case studies |
| Exam Duration: | 120 minutes |
| Passing Score: | 700 (on 1000 scale) |
| Available Languages: | English |
| 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 |
| Section | Objectives |
|---|---|
| Topic 1: UI and Branding | - Master pages and page layouts - Custom branding and theming |
| Topic 2: Workflows and Business Logic | - Business process automation - SharePoint workflows development |
| Topic 3: Custom Solutions and Components | - Event receivers and features - Web Parts development and deployment |
| Topic 4: Data Access and Integration | - Business Connectivity Services (BCS) - SharePoint object model (server-side API) - LINQ to SharePoint and data querying |
| Topic 5: SharePoint Development Platform | - SharePoint architecture and development model - Site collections, sites, and lists |
| Topic 6: Security and Administration | - Permissions and role management - Authentication and authorization in SharePoint |
The Microsoft TS: Office SharePoint Server, Application Development (available in 2010) is the official Microsoft exam that leads to the MCSE certification at the Professional level. Passing it validates your skills against Microsoft standards and proves your qualification to current and future employers. The credential is also connected with related certifications such as Microsoft Certified Technology Specialist (MCTS): SharePoint 2010, so it can serve as a solid step in a broader certification path.
The 70-573 exam has 40-60 questions in total and must be completed within 120 minutes. That leaves only a narrow time budget per item, so train yourself to flag a difficult question, move on, and circle back later instead of getting stuck. A week or two before your test date, run at least one full timed mock exam in the Actual4Dumps desktop or online test engine under the same 120 minutes limit, and repeat until you can finish with a few minutes left for review.
The passing score for the 70-573 exam is 700 (on 1000 scale), and the official registration fee is USD 150 (varies by region). Keep in mind that a failed attempt is not discounted — retaking the exam means paying the full fee again — so it is wise not to book your seat until your practice scores sit comfortably above the passing mark. Working through the 150 questions at Actual4Dumps in timed mode is a reliable way to judge when you are truly ready.
Microsoft sets the following requirement for the 70-573 exam: Recommended experience with C#, ASP.NET, and SharePoint 2010 development concepts. Eligibility rules can change from time to time, so always confirm the current prerequisites on the official exam page at https://learn.microsoft.com/en-us/previous-versions/education/certifications before you register.
Yes. Actual4Dumps offers a free PDF demo for the Microsoft TS: Office SharePoint Server, Application Development (available in 2010), so you can review real sample questions and judge the quality before paying anything. After your purchase, you receive 365 days of free updates — whenever the question pool changes, you get the latest version at no cost. Once that period expires, you can extend your update service at a 50% discount from your member zone.
If you take the 70-573 exam within 60 days of your purchase and do not pass, you can apply for a full refund under our 100% Money Back Guarantee. To qualify, submit a scanned copy of your exam enrollment slip together with your official Score Report (PDF) within 2 days after the exam date, and your claim will be processed within 7 days. Note that the guarantee applies only to the corresponding exam: attempts taken within 3 days of purchase, downloaded-but-unused materials, free resources, and expired orders are not eligible, and the candidate name must match the purchaser name. If you would rather not refund, you can exchange the product for two free exam products of equal value while keeping the update service on your original purchase.
Delivery is instant: your files are available to download right after payment and are also sent to your email within one minute. If nothing arrives within 2 hours, contact our support team (and check your spam folder first). There is no limit on the number of computers you can install the product on.
The Microsoft TS: Office SharePoint Server, Application Development (available in 2010) is organized into 6 domains. Among the first ones are UI and Branding, SharePoint Development Platform, Custom Solutions and Components, and the remaining domains cover the rest of the official objectives. For the complete topic breakdown with every subtopic, see the full 70-573 exam outline above on this page.
Question 1
You need to programmatically add a user named User1 to a group named Group1.
You write the following code segment. (Line numbers are included for reference only.)
01 string login = "User1";
02 string grpName = "Group1";
03 SPUser user = SPContext.Current.Web.EnsureUser(login);
04 SPGroup group = SPContext.Current.Web.Groups[grpName];
05
06 group.Update();
Which code segment should you add at line 05?
A. user.AllowBrowseUserInfo = true;
B. group.AddUser(user);
C. group.Owner = user;
D. user.Update();
Question 2
You have a Microsoft .NET Framework console application that uses the SharePoint client object model.
The application contains the following code segment. (Line numbers are included for reference only.)
01 ClientContext cCtx = new ClientContext("http://intranet/hr");
02 List sharedDocList = cCtx.Web.Lists.GetByTitle("Shared Documents");
03 CamlQuery camlQuery = new CamlQuery();
04 camlQuery.ViewXml =
05 @"<View>
06 <Query>
07 <Where>
08 <Eq>
09
10 <Value Type='Text'>Doc1.docx</Value>
11 </Eq>
12 </Where>
13 </Query>
14 </View>";
15 ListItemCollection docLibItems = sharedDocList.GetItems(camlQuery);
16 cCtx.Load(sharedDocList);
17 cCtx.Load(docLibItems);
18 cCtx.ExecuteQuery();
You need to ensure that the application queries Shared Documents for a document named Doc1.docx.
Which code element should you add at line 09?
A. <FieldRef Name='FileDirRef'/>
B. <FieldRef Name='File_x0020_Type'/>
C. <FieldRef Name='FileLeafRef'/>
D. <FieldRef Name='FileRef'/>
Question 3
You need to create a Web control that displays an ASCX control.
Which event should you use to render the Web control?
A. SaveViewState
B. CreateChildControls
C. SetDesignModeState
D. LoadControlState
Question 4
You create a modal dialog that displays a list of items. You need to capture the items selected by a user. Which code segment should you use?
A. var item = SPContext.Current.Item["Selected"];
B. var items = SP.ListOperation.Current.Item();
C. SPItem item = SPContext.Current.Item;
D. var items = SP.ListOperation.Selection.getSelectedItems();
Question 5
You need to create a Web Part that will store and retrieve information for the current subsite. Which object should you use?
A. SPContext.Current.Web.Configuration
B. SPContext.Current.Site.RootWeb.Configuration
C. SPContext.Current.Site.RootWeb.AllProperties
D. SPContext.Current.Web.Properties
Solutions:
| Question 1 Answer: B | Question 2 Answer: C | Question 3 Answer: B | Question 4 Answer: D | Question 5 Answer: D |
Over 45369+ Satisfied Customers
The questions are still valid as of 70-573. Almost all the 70-573 questions from the prep were also in the actual 70-573 exam. Passed today, with a wonderful score!
I took the 70-573 exam two days ago and cleared it, the 70-573 training dump helped a lot, almost all questions were from it!
A unique experience! Exam 70-573 was just a piece of cake!
I pass Microsoft 70-573 exam, I am planning to purchase 70-333 & 070-333, I trust Actual4Dumps offers good products.
70-573 test preparation really helped me in my test.
The dump was great. Gave me all the info needed to pass Microsoft 70-573 exam. Thank you very much.
scored high, if you want to get good marks in 70-573 then visit your website.
The best part of Actual4Dumps study guide is that it is clear of all mistakes and substandard information. The accuracy of the content is beyond questions. Passed exam 70-573 with a huge score!
The 70-573 exam materials are the best and troubleshooting exam materials! You will pass your exam as long as you choose them. I took the exam and passed with a satisfied score!
Cool to pass the 70-573 exam just in one go! Guys, you can relay on the 70-573 exam questions. And i have only studied for it at my spare time. You may do a better job if you study more. Good luck!
I just want to let you know I passed my 70-573 exam today. Your 70-573 exam questions closely matched the actual 70-573 exam.
passed three days ago. few questions. the dump is about 90% valid. don't take the exam with additional resources. VALID DUMPS.
Passed my 70-573 exam yesterday, the 70-573 exam material is straight forward for you to pass the exam.
I just passed the 70-573 exam by learning the 70-573 practice dump. Good luck and study hard!
70-573 exam materials are written with high quality, and I not only have learned lots of professional knowledge in the process of training, but also got the certification. I recommend Actual4Dumps!
Online test version saves me lots of time to prepare the 70-573 real exam , it is the best choice for IT person,highly recommend!
YP WITHOUT 70-573
I CAN NOT PASS THE EXAM
LUCKILY
THANK YOU
IT IS HELPFUL
Actual4Dumps Practice Exams are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development - no all study materials.
We are committed to the process of vendor and third party approvals. We believe professionals and executives alike deserve the confidence of quality coverage these authorizations provide.
If you prepare for the exams using our Actual4Dumps testing engine, It is easy to succeed for all certifications in the first attempt. You don't have to deal with all dumps or any free torrent / rapidshare all stuff.
Actual4Dumps offers free demo of each product. You can check out the interface, question quality and usability of our practice exams before you decide to buy.