Testking offers free demo for 70-494 exam. "Recertification for MCSD: Web Applications", also known as 70-494 exam, is a Microsoft Certification. This set of posts, Passing the Microsoft 70-494 exam, will help you answer those questions. The 70-494 Questions & Answers covers all the knowledge points of the real exam. 100% real Microsoft 70-494 exams and revised by experts!


♥♥ 2021 NEW RECOMMEND ♥♥

Free VCE & PDF File for Microsoft 70-494 Real Exam (Full Version!)

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

Free Instant Download NEW 70-494 Exam Dumps (PDF & VCE):
Available on: http://www.surepassexam.com/70-494-exam-dumps.html

Q11. DRAG DROP - (Topic 5) 

You are configuring a web application for deployment. 

You need to create a SetParameters.xml file to configure the IIS application pool. You have the following markup: 

Which configuration values should you include in Target 1 and Target 2 to complete the markup? (To answer, drag the appropriate configuration values to the correct targets in the answer area. Each configuration value 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. DRAG DROP - (Topic 2) 

The GetExternalOrders() method must use members of the EntityClient namespace to query the database for all records in the InboundQueue entity. 

You need to modify the GetExternalOrders() method to return the correct data. 

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: 

Topic 3, Scenario 3 

Background 

You are developing a video transcoding service. This service is used by customers to upload video files, convert video to other formats, and view the converted files. This service is used by customers all over the world. 

Business Requirements 

The user-facing portion of the application is an ASP.NET MVC application. It provides an interface for administrators to upload video and schedule transcoding. It also enables administrations and users to download the transcoded videos. 

When videos are uploaded, they are populated with metadata used to identify the video. The video metadata is gathered by only one system when the video upload is complete. 

Customers require support for Microsoft Internet Explorer 7 and later. 

The application contains a header that is visible on every page. 

If the logged-on user is an administrator, then the header will contain links to administrative functions. This information is read from a cookie that is set on the server. The administrative links must not be present if an error condition is present 

Technical Requirements 

User Experience: 

. The front-end web application enables a user to view a list of videos. 

. The main view of the application is the web page that displays the list of videos. 

. HTML elements other than the list of videos are changed with every request requiring the page to reload.

Compatibility: 

Some customers use browsers that do not support the HTTP DELETE verb. 

These browsers send a POST request with an HTTP header of X-Delete when the intended action is to delete.

Transcoding: 

The video transcoding occurs on a set of Microsoft Azure worker roles. 

The transcoding is performed by a third-party command line tool named transcode.exe. When the tool is installed, an Environment variable named transcode contains the path to the utility. 

A variable named license contains the license key. The license for the transcoding utility requires that it be unregistered when it is not in use. 

The transcoding utility requires a significant amount of resources. A maximum of 10 instances of the utility can be running at any one time. If an instance of the role cannot process an additional video, it must not prevent any other roles from processing that video. 

The utility logs errors to a Logs directory under the utilities path. 

A local Azure directory resource named pert is used to capture performance data.

Development: 

Developers must use Microsoft Remote Desktop Protocol (RDP) to view errors generated by the transcode.exe utility.

An x509 certificate has been created and distributed to the developers for this purpose.

Developers must be able to use only RDP and not any other administrative functions.

Application Structure 

TranscodeWorkerRole.cs 

ThumbnailGenerator.cs 

VideoController.cs 

DeleteHandler.cs

 VideoAdminAttributes.cs 

AdminVerifierFactory.cs 


Q13. DRAG DROP - (Topic 5) 

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. 

Answer: 


Q14. - (Topic 5) 

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. PUT 

C. DELETE 

D. POST 

Answer:


Q15. HOTSPOT - (Topic 5) 

You are developing an ASP.NET MVC application named ContosoWebApp. You are ready 

to deploy the application to your production web server. 

You need to import the publishing profile. 

Which menu item should you use? (To answer, select the appropriate menu item in the 

answer area). 

Answer: 


Q16. - (Topic 5) 

You are developing an ASP.NET MVC application. The application is deployed in a web 

farm and is accessed by many users. 

The application must handle web server failures gracefully. The servers in the farm must 

share the short-term state information. 

You need to persist the application state during the session. What should you implement? 

A. A local database 

B. ASP.NET session state 

C. Profile properties 

D. A state server 

Answer:

Explanation: 

Ref: http://msdn.microsoft.com/en-us/library/vstudio/ms178586(v=vs.100).aspx 


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


Q18. DRAG DROP - (Topic 5) 

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 users. 

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: 


Q19. DRAG DROP - (Topic 2) 

You need to complete the GetProcessedOrders() action in the ProcessedOrderController controller to meet the requirements. 

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: 


Q20. DRAG DROP - (Topic 4) 

The service has been deployed to Windows Azure. 

Trey Research has provided version 1.3.0.0 of the assembly to support a change in the serialization format. The service must remain available during the transition to the new serialization format. 

You need to ensure that the service is using the new assembly. 

Which configuration setting should you add to the web.config? (To answer, drag the appropriate configuration elements to the correct location or locations in the answer area. Each configuration 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: 

Topic 5, Mix Questions