aiotestking uk

70-487 Exam Questions - Online Test


70-487 Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

Q1. - (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 

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

Q3. HOTSPOT - (Topic 1) 

You need to deploy the application to the Windows Azure production environment to meet the business requirements. 

What should you do? (To answer, select the appropriate button in the answer area.) 

Answer:  

Q4. - (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 

Q5. DRAG DROP - (Topic 2) 

You add a class named ShippingInfo. 

You need to modify the IShippingService interface and the ShippingInfo class to meet the technical 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:  

Q6. DRAG DROP - (Topic 4) 

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

The methods of the Web API must return details about the result of the operation. 

You need to create methods to update and delete products. 

You have the following code: 

Which code segments should you include in Target 1, Target 2, Target 3, Target 4 and Target 5 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:  

Q7. - (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/