Actualtests offers free demo for 70 486 book exam. "Developing ASP.NET MVC 4 Web Applications", also known as exam 70 486 dumps pdf free download exam, is a Microsoft Certification. This set of posts, Passing the Microsoft 70 486 certification exam, will help you answer those questions. The 70 486 exam Questions & Answers covers all the knowledge points of the real exam. 100% real Microsoft 70 486 study guide exams and revised by experts!

Q1. DRAG DROP - (Topic 1) 

You need to implement security according to the business requirements. 

You have the following code: 

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


Q2. HOTSPOT - (Topic 4) 

You develop an ASP.NET MVC application. The application includes a feature that allows users to reset their passwords. The feature is enabled by a ForgotPassword controller method and a corresponding Razor view. 

You need to prevent Cross-Site Request Forgery (CSRF) attacks. 

How should you complete the relevant code? To answer, select the appropriate code segment from each list in the answer area. 

Answer: 


Q3. DRAG DROP - (Topic 4) 

You are developing an ASP.NET MVC application that has pages for users who browse the site with Windows Phone 7. 

The pages for Windows Phone 7 include the following files: 

. _Layout.WP7.cshtml 

. Index.WP7.cshtml 

You need to update the application so that it renders the customized files correctly to Windows Phone 7 users. 

How should you update the Application_Start method? (To answer, drag the appropriate line of code to the correct location or locations. Each line of code 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: 


Q4. HOTSPOT - (Topic 4) 

You are developing an ASP.NET MVC application in Visual Studio 2012. The application supports multiple cultures. 

To set the culture, the application must use the AcceptLanguage header field value sent by the client browser. 

You need to ensure that the application can set the culture. You have the following markup in the web.config file: 

Which markup segments should you include in Target 1, Target 2 and Target 3 to complete the markup? (To answer, select the appropriate options in the answer area.) 

Answer: 


Q5. DRAG DROP - (Topic 4) 

You are developing an ASP.NET web application that uses health monitoring to log events to the Windows Event Log. The application contains a custom event that is defined in the following code segment. Line numbers are included for reference only. 

You need to ensure that the event is correctly added to the Windows event log. 

How should you complete the relevant code? To answer, drag the appropriate code segment to the correct location or locations. 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 3) 

You need to ensure that the transcode.exe utility is installed before the worker role starts. You have the following markup: 

Which markup segments should you include in Target 1, Target 2, Target 3, Target 4 and Target 5 to implement the startup task? To answer, drag the appropriate markup segments to the correct targets. Each markup segments 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 4, Mixed Questions 


Q7. - (Topic 2) 

You need to implement client-side animations according to the business requirements. 

Which line of code should you use? (Each correct answer presents a complete solution. Choose all that apply.) 

A. $ ("h1: first") .animate ({ opacity: 0 }); 

B. $("h1:first").fadeIn(1000); 

C. $("h1:first").animate({ opacity: 1 }); 

D. $("h1:first").fadeOut(1000); 

Answer: A,D 

Topic 3, Video Transcoding Service 

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 administrators 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 Windows 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 perf 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 


Q8. - (Topic 3) 

You need to ensure that all the MVC controllers are secure. 

Which code segment should you use as the body for the CreateController method in AdminVerifierFactory.es? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: