Examcollection 70 487 exam Questions are updated and all exam 70 487 answers are verified by experts. Once you have completely prepared with our exam ref 70 487 exam prep kits you will be ready for the real microsoft 70 487 exam without a problem. We have Renovate Microsoft exam ref 70 487 developing windows azure and web services dumps study guide. PASSED 70 487 dumps First attempt! Here What I Did.

Q1. - (Topic 2) 

The DeleteExternalOrder() method in the ExternalQueueService service is not throwing a FaultException exception as defined by the FaultContractAttribute attribute in the IExternatQueueService.cs file. 

You need to throw the FaultException exception. 

Which code segment can you insert at line EQ45 to achieve this goal? (Each correct answer presents a complete solution. Chose all that apply.) 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q2. DRAG DROP - (Topic 4) 

You are developing an ASP.NET Web API for a home inventory management system. You need to limit access to users with IP addresses based only in the United States. You have the following code: 

Which code segments should you include in Target 1 and Target 2 to complete the code? (To answer, drag the appropriate code segments to the correct targets in the answer area. Each code segment 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: 


Q3. - (Topic 4) 

You are developing an ASP.NET MVC application. The application is an order processing system that uses the ADO.NET Entity Framework against a SQL Server database. It has a controller that loads a page that displays all orders along with customer information. Lazy loading has been disabled. 

The Order class is shown below. 

You need to return the orders and customer information in a single round trip to the database. 

Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q4. - (Topic 3) 

You need to configure the server to self-host the bookstore's Web API application. Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: MapHttpRoute Method Maps the specified route template. Use the option with "api/… 


Q5. - (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:


Q6. - (Topic 4) 

You are developing an ASP.NET MVC application. The application is a loan processing system that uses the ADO.NET Entity Framework against a SQL Server database. It has a controller that loads a page that displays all loans along with rate information. Lazy loading has been disabled. 

The Loan class is shown below. 

You need to return the loans and rate information in a single round trip to the database. Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q7. - (Topic 2) 

TION NO: 2 The GetExternalOrder() method in the ExternalQueueService service is throwing a runtime error. The method must query the database for a record that matches the orderNum parameter passed to the method. 

You need to modify the queryString string to retrieve the record. 

With which code segment should you replace line EQ64? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q8. DRAG DROP - (Topic 1) 

Flight information data provided by Margie's Travel is updated both locally and remotely. When the data is synced, all changes need to be merged together without causing any data loss or corruption. 

You need to implement the Sync() method in the MargiesTravelSync.es file. 

What should you do? (To answer, drag the appropriate code segments to the correct location or locations in the answer area. Each code segment 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: 


Q9. - (Topic 4) 

You are developing an ASP.NET MVC application. The application has a page that searches for and displays an image stored in a database. Members of the EntityClient namespace are used to access an ADO.NET Entity Framework data model. Images and associated metadata are stored in a database table. 

You need to run a query that returns only the image while minimizing the amount of data that is transmitted. 

Which method of the EntityCommand type should you use? 

A. ExecuteScalar 

B. ExecuteDbDataReader 

C. ExecuteReader 

D. ExecuteNonQuery 

Answer:

Explanation: ExecuteScalar 

Executes the command, and returns the first column of the first row in the result set. 

Additional columns or rows are ignored. 


Q10. - (Topic 2) 

The QueueDetail entity type must inherit from the InboundQueue entity type in the ExternalQueue service project using table-per-type inheritance. 

You need to modify the entities in the designer. 

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

A. Remove the OrderNum property in InboundQueue. 

B. Remove the OrderNum property in QueueDetail. 

C. Set the QueueDetail BaseType to InboundQueue. 

D. Remove the association between the entities. 

E. Right-click the entities and validate the table mapping. 

F. Set the InboundQueue BaseType to QueueDetail. 

Answer: B,C,D,E 

Explanation: http://www.robbagby.com/entity-framework/entity-framework-modeling-table-per-type-inheritance/ 


Q11. DRAG DROP - (Topic 1) 

You need to configure the Windows Azure service definition to enable Consolidated 

Messenger to upload files. 

What should you do? (To answer, drag the appropriate configuration items to the correct location or locations. Each configuration item 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: 


Q12. - (Topic 1) 

Transformed historical flight information provided by the RemoteDataStream() method must be written to the response stream as a series of XML elements named Flight within a root element named Flights. Each Flight element has a child element named FlightName that contains the flight name that starts with the two-letter airline prefix. 

You need to implement the StreamHistoricalFlights() method so that it minimizes the amount of memory allocated. 

Which code segment should you use as the body of the StreamHistoricalFlights() method in the HistoricalDataLoader.es file? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Explanation: http://msdn.microsoft.com/en-us/library/system.xml.linq.xstreamingelement.aspx and http://msdn.microsoft.com/en-us/library/bb551307.aspx 


Q13. DRAG DROP - (Topic 4) 

You are developing a RESTful application by using ASP.NET MVC. The application is a pet management system and implements the following method in a controller for retrieving pet data. 

The method must only accept JSON data using the standard MIME type. 

You need to implement a controller that saves pet data and return a properly formatted 

HTTP/1.1 protocol response. 

You have the following code: 

Which code segments should you include in Target 1, Target 2, Target 3 and Target 4 to complete the code? {To answer, drag the appropriate code segments to the correct targets in the answer area. Each code segment 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: 


Q14. DRAG DROP - (Topic 4) 

You are developing a WCF service. 

You need to configure the web.config file to ensure that metadata is exposed only via the 

MEX protocol. 

You have the following markup: 

Which XML elements should you include in Target 1, Target 2, Target 3 and Target 4 to complete the markup? (To answer, drag the appropriate XML elements to the correct targets in the answer area. Each XML element 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: 


Q15. DRAG DROP - (Topic 4) 

You are developing a Windows Azure based web application that provides users the ability to rent training videos. The application is deployed to hosted services in Asia and Europe. 

The web application must meet the following requirements: 

Video files are large and must be able to be streamed. 

Streaming videos requires low latency network connections. 

Rental data contains structured information about the user and the video. 

Rental permissions are checked every five seconds during video playback. 

You need to recommend a storage architecture for the application. 

What should you do? (To answer, drag the appropriate technologies to the correct location or locations in the answer area. Each technology 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: 


Q16. - (Topic 3) 

The PurchaseOrders.xml file contains all of the purchase orders for the day. 

You need to query the XML file for all of the shipping addresses. 

Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: