web analytics

(New Updated) Free Download Microsoft 70-487 Exam PDF Dumps With New Changed Questions (1-15)

P.s.: PassLeader’s 70-487 Brain Dumps Were Updated in Recent Days With The Change Of New Microsoft 70-487 Exam, All New 70-487 Exam Questions Are Available Now At passleader.com. Visit Our Site And Get Valid 70-487 PDF And VCE Exam Dumps With Free New Version VCE Player.

Vendor: Microsoft
Exam Code: 70-487
Exam Name: Microsoft Developing Windows Azure and Web Services

QUESTION 1
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: AB
Explanation:
EdmGen.exe ( http://msdn.microsoft.com/en-us/library/cc716721.aspx )
ADO.Net Entity Data Model Designer ( http://msdn.microsoft.com/en-us/library/vstudio/cc716685(v=vs.100).aspx )
The Entity Data Model wizard creates the .edmx files. It does not validate the CSDL, SSDL or MSL files. The Update Model wizard updates the .edmx file after changes have been made.  It does not validate the CSDL, SSDL or MSL files.

QUESTION 2
Drag and Drop Question
You are developing an ASP.NET Web API action method. The action method must return the following JSON in the message body.
{ " Name ":" Fabrikam", "Vendor Id": 9823, "Items": ["Apples", "Oranges"] }
You need to return an anonymous object that is serialized to JSON. 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.
21_thumb[1]

Answer:
22_thumb[2]

QUESTION 3
You are designing an ASP.NET Web API application. You need to select an HTTP verb to allow blog administrators to moderate a comment. Which HTTP verb should you use?

A.    GET
B.    POST
C.    DELETE
D.    PUT

Answer: D

QUESTION 4
Drag and Drop Question
You are developing an ASP.NET Web API application that will be consumed by a web browser via a composite application that is served from another web domain. You need to configure the Web API. What should you do? (To answer, drag the appropriate XML elements to the correct location or locations 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.)
41_thumb[4]

Answer:
42_thumb[7]

QUESTION 5
You are planning to migrate websites from IIS 6 to IIS 7.5. You do not have access to SSH or a VPN. You need to select a deployment tool to securely migrate the websites. Which tool should you use?

A.    RoboCopy
B.    Web Deploy
C.    Microsoft command-line FTP
D.    xCopy

Answer: B

QUESTION 6
Drag and Drop Question
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.)
61_thumb[2]

Answer:
62_thumb[1]

QUESTION 7
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: D


http://www.passleader.com/70-487.html

QUESTION 8
You are developing an ASP.NET MVC web application that contains the following HTML.
<table id= "customer" ></table>
You also have an ASP.NET Web API application that contains a call for retrieving customers. You must send and retrieve the data in the most compact format possible. You need to update the HTML for the customers table to contain data from the Web API application. Which script segment should you use?
81_thumb[2]

A.    Option A
B.    Option B
C.    Option C
D.    Option D

Answer: A

QUESTION 9
Drag and Drop Question
You are developing an ASP.NET MVC Web API image management application. The application must meet the following requirements:
– It must send or receive image data without the use of a buffer.
– It must allow up to 4 MB of image data to be received.
– It must allow up to 3 MB of image data to be sent.
You need to complete the code 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.)
91_thumb[1]

Answer:
92_thumb[1]

QUESTION 10
You are preparing to develop a set of libraries for a company. The libraries must be shared across the company. You need to create a remote NuGet feed that exposes the libraries. What should you do? (Each answer presents part of the solution. Choose all that apply.)

A.    Install the NuGet.Feed Package.
B.    Install the NuGet.Server Package.
C.    Configure the Packages folder located in the system.webserver section of the web application’s Web.config.
D.    Create a new Empty Web Site in Visual Studio 2012.
E.    Configure the Packages folder located in the appSettings section of the web application’s Web.config.
F.    Add packages to the Packages folder.
G.    Create a new Empty Web Application in Visual Studio 2012.

Answer: BEFG

QUESTION 11
You develop an ASP.NET MVC application that is secured by using SSL. You are ready to deploy the application to production. The deployment package must include the installation of the SSL certificate. You need to configure the deployment package to meet the requirement. What should you do?

A.    Create a web publish pipeline target file with a custom web deploy target.
B.    In the Package/Publish settings of the project, select the All Files in this project option.
C.    Extend the CopyAllFilesToSingleFolder target in the project file.
D.    In the Build Events settings of the project, configure a pre-build event to include the SSL certificate.

Answer: A

QUESTION 12
You are developing a library to support multiple ASP.NET MVC web applications on a shared server. The library provides implementations of security algorithms. If a problem with any of the security algorithms is discovered, a new version of the library must be created and deployed. Application downtime during the update must be minimized. You need to ensure that the new version of the library will be used by all applications as soon as possible. What should you do?

A.    Build the web applications and include the security assembly as an embedded resource. When an update is needed, copy the new assembly to the bin directory for the application.
B.    Sign all assemblies in each application with the same key used to sign the security assembly. When an update is needed, create a new key pair and re-sign all assemblies.
C.    Build the security assembly as a netmodule in a shared location. Use the assembly linker to merge the netmodule into the assemblies for the application. When an update is needed, update the netmodule in the shared location.
D.    Install the security assembly in the Global Assembly Cache (GAC). When an update is needed, update the assembly in the GAC.

Answer: D

QUESTION 13
You are developing an application in Visual Studio 2012 to display student information. The application contains the following Entity Framework model.
131_thumb[1]
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: A

QUESTION 14
Drag and Drop Question
You are developing a WCF Data Services service in Visual Studio 2012 to display movie information from a SQL Server database that changes every 24 hours. The service is defined in the following class.
144_thumb[1]
The application contains the following Entity Framework model.
141_thumb[8]
The service must only return data for movies that are currently in theaters. You need to add a method to the MovieService class to filter the data. How should you build the method? (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.)
142_thumb[3]

Answer:
143_thumb[2]

QUESTION 15
You are developing an ASP.NET MVC application that reads and writes data from a SQL Server database. You need to prevent the application from reading data that is locked by other transactions. You also need to prevent exclusive range locks. Which isolation level should you use?

A.    ReadCommitted
B.    Serializable
C.    Repeatable
D.    ReadUncommitted

Answer: A
Explanation:
SQL Server Isolation Levels
( http://msdn.microsoft.com/en-us/library/ms189122(v=sql.105).aspx )
( http://msdn.microsoft.com/en-us/library/ms173763.aspx )


http://www.passleader.com/70-487.html

Welcome To Visit PassLeader