★ Pass on Your First TRY ★ 100% Money Back Guarantee ★ Realistic Practice Exam Questions

Free Instant Download NEW 70-487 Exam Dumps (PDF & VCE):
Available on: https://www.certleader.com/70-487-dumps.html


Exam Code: 70-487 (Practice Exam Latest Test Questions VCE PDF)
Exam Name: Developing Windows Azure and Web Services
Certification Provider: Microsoft
Free Today! Guaranteed Training- Pass 70-487 Exam.

2021 Nov exam code 70-487:

Q21. - (Topic 4) 

You are developing an application in Visual Studio 2012 to display student information. The application contains the following Entity Framework model. 

The application contains a WCF data service named DirectoryService.svc. 

You need to create a query expression to display all of the grades for students whose first name is "John" 

How should you build the expression? 

A. http://localhost:54946/DirectoryService.svc/Students?$filter=FirstName eq 'John' &$expand=Grades 

B. http://localhost:54946/DirectoryService.svc/Students?$filter=FirstName eq 'John'/Grades 

C. http://localhost:54946/DirectoryService.svc/Students?$filter=FirstName = 'John' &$expand=Grades 

D. http://localhost:54946/DirectoryService.svc/Grades/Students?$filter=FirstName eq 'John' 

Answer:


Q22. - (Topic 2) 

The DeleteExternalOrder() method in the ExternalQueueService service is not throwing a 

FaultException exception as defined by the FaultContractAttribute attribute in the IExternalQueueService.cs file. 

You need to throw the FaultException exception. 

Which code segments 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: B,C 


Q23. HOTSPOT - (Topic 4) 

You are supporting an application that uses the ADO.NET Entity Framework to query and access data. 

The latest version of a tool will add new templates and wizards that will enhance developer productivity. 

You need to update the tool. 

Which Visual Studio 2012 menu item should you choose? (To answer, select the appropriate menu item in the answer area.) 

Answer: 


Q24. 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: 


Q25. - (Topic 1) 

You need to load flight information provided by Consolidated Messenger. What should you use? 

A. Office Open XML 

B. COM interop 

C. OleDbConnection and OleDbDataReader 

D. EntityConnection and EntityDataReader 

Answer:


Updated 70-487 braindump:

Q26. - (Topic 4) 

You are developing an ASP.NET MVC application. 

Deployment administrators do not have access to Visual Studio 2102, but will have the 

elevated permissions required to deploy the application to the servers. You need to select a deployment tool for use by the deployment administrators. Which tool should you use? 

A. Publish Web Site Tool 

B. Web Deployment Package 

C. One-Click Publish 

D. Deployment Package Editor 

Answer:


Q27. - (Topic 1) 

You need to recommend a data access technology to the contractor to retrieve data from the new data source. 

Which data access technology should you recommend? 

A. LINQ to XML 

B. ADO.NET Entity Framework 

C. ADO.NET DataSets 

D. WCF Data Services 

Answer:


Q28. - (Topic 4) 

You are building an ADO.NET Entity Framework application. 

You need to validate the conceptual schema definition language (CSDL), store schema definition language (SSDL), and mapping specification language (MSL) files. 

Which Entity Data Model tool can you use? (Each correct answer presents a complete solution. Choose all that apply.) 

A. EDM Generator (EdmGen.exe) 

B. ADO.NET Entity Data Model Designer 

C. Entity Data Model Wizard 

D. Update Model Wizard 

Answer: A,B 


Q29. DRAG DROP - (Topic 2) 

You need to create the ShippingContext class in the ShippingAddress.es file to meet the requirements. 

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: 


Q30. - (Topic 4) 

You are developing a WCF service. 

You need to create a duplex contract. 

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

A. Apply the MessageContractAttribute attribute to every public method signature included in the appropriate contract. 

B. Create an interface for the client-side duplex contract. 

C. Create an interface for the server-side duplex contract. 

D. Apply the MessageContractAttribute attribute to the appropriate interface. 

E. Apply the ServiceContractAttribute attribute to the appropriate interface. Then, apply the OperationContractAttribute attribute to every public method signature included in that contract. 

F. Set the CallbackContract property to the appropriate interface. 

Answer: C,E,F 

Explanation: To create a duplex contract 

(C) Create the interface that makes up the server side of the duplex contract. 

 (E) Apply the ServiceContractAttribute class to the interface. 

Declare the method signatures in the interface. 

 (E)Apply the.OperationContractAttribute.class to each method signature that must be part of the public contract. 

Create the callback interface that defines the set of operations that the service can invoke on the client. 

Declare the method signatures in the callback interface. 

Apply the.OperationContractAttribute.class to each method signature that must be part of the public contract. 

 (F)

 Link the two interfaces into a duplex contract by setting 

the.CallbackContract.property in the primary interface to the type of the callback 

interface. 

Reference: How to: Create a Duplex Contract