70-487 Exam - Developing Windows Azure and Web Services

certleader.com

Q1. DRAG DROP - (Topic 2) 

The UploadOrder() method in the UploadCallbackService service is not implementing the callback behavior defined in the IUploadCallBackService interface. 

You need to modify the class to implement the required callback behavior. 

What should you do? (To answer, drag the appropriate code segments to the correct location or locations in the answer area. Each code segments may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.) 

Answer:  

Q2. - (Topic 4) 

You are designing an ASP.NET Web API application. 

You need to select an HTTP verb to allow blog administrators to modify the text of a comment. 

Which HTTP verb should you use? 

A. GET 

B. DELETE 

C. POST 

D. PUT 

Answer:

Q3. - (Topic 4) 

You are preparing to develop a set of libraries that uses large data sets. 

The libraries must be shared across an organization and distributed to several servers. 

You need to create a remote NuGet feed that exposes the libraries for developer use. 

What should you do? (Each answer presents part of the solution. Choose all that apply.) 

A. Add packages to the Packages folder. 

B. Create a new Empty Web Application in Visual Studio. 

C. Configure the Packages folder located in the appSettings section of the web application's Web.config. 

D. Install the NuGet.DataFeed Package. 

E. Install the NuGet.Server Package. 

F. Create a new Empty Web Site in Visual Studio. 

Answer: A,B,C,E 

Explanation: Creating Remote Feeds You can host a remote (or internal) feed on a server that runs IIS. Step 1 (B): Create a new Empty Web Application in Visual Studio Step 2 (E): Install the NuGet.Server Package Step 3 (C): Configure the Packages folder Step 4 (A): Add Packages to the Packages folder Step 5: Deploy and run your brand new Package Feed! 

Reference: Hosting Your Own NuGet Feeds 

Q4. DRAG DROP - (Topic 4) 

You are developing an ASP.NET MVC Web API application. 

The method names of the Web API must match naming guidelines for RESTful services. 

You need to create methods to support standard insert, select, update, and delete 

operations in an HTTP service. 

What should you do? (To answer, drag the appropriate HTTP methods to the correct row in 

the table in the answer area. Each HTTP method may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.) 

Answer:  

Q5. - (Topic 4) 

You are developing an ASP.NET MVC application. 

Applications can be deployed to remote servers only by administrators who have elevated privileges. The administrators do not have access to Visual Studio 2012. 

You need to select a deployment tool to deploy the application to remote servers for testing. 

Which tool should you use? 

A. Copy Web Site Tool 

B. One-Click Publish 

C. Publish Web Site Tool 

D. Web Deployment Package 

Answer:

Q6. - (Topic 3) 

You need to implement the Get() method in the bookstore Web API application to be able to find books by using an ad hoc query. 

Which method should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Q7. - (Topic 3) 

You need to create an OData query expression to return the ten books with the largest number of sales. 

Which query expression should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: 

Order by desc(ending) to get the posts with the largest number of sales at the top. Specify to display the top 10 posts.