Microsoft 70-486 Developing ASP.NET MVC 4 Web Applications Online Training
Microsoft 70-486 Online Training
The questions for 70-486 were last updated at Nov 21,2024.
- Exam Code: 70-486
- Exam Name: Developing ASP.NET MVC 4 Web Applications
- Certification Provider: Microsoft
- Latest update: Nov 21,2024
You are developing an ASP.NET MVC application that will be deployed on a web farm.
Passwords must be stored in the web.config file and must not be readable or in a format that is easily decodable. You need to encrypt the passwords that are stored in the web.config file.
Which command-line tool should you use?
- A . Aspnet_regiis.exe
- B . Aspnet_regbrowsers.exe
- C . Aspnet_setreg.exe
- D . Aspnet_compiler.exe
You are developing an ASP.NET MVC web application that includes the following method.
You need to test the GoldMined method.
Which unit test should you use?
- A . Option A
- B . Option B
- C . Option C
- D . Option D
You are developing an ASP.NET MVC application by using Visual Studio 2012.
The application throws and handles exceptions when it runs.
You need to examine the state of the application when exceptions are thrown.
What should you do?
- A . From the Debug menu in Visual Studio 2012, select Exceptions. Enable the Thrown check box for Common Language Runtime Exceptions.
- B . From the DEBUG menu in Visual Studio 2012, select Attach to Process. Select the IIS process.
- C . From the Debug menu in Visual Studio 2012, select Exceptions. Disable the User-unhandled check box for Common Language Runtime Exceptions.
- D . From the TOOLS menu in Visual Studio 2012, click Customize. Click the Command tab and select Debug.
HOTSPOT
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:
You need to update the application so that it renders the customized files correctly to Windows Phone 7 users.
You have the following code:
How should you update the Application_Start method? (To answer, select the appropriate option from the drop-down list in the answer area.)
You are developing an ASP.NET MVC web application for viewing a photo album. The application is designed for devices that support changes in orientation, such as tablets and smartphones. The application displays a grid of photos in portrait mode.
When the orientation changes to landscape, each tile in the grid expands to include a description. The HTML that creates the gallery interface resembles the following markup.
If this CSS is omitted, the existing CSS displays the tiles in landscape mode.
You need to update the portrait mode CSS to apply only to screens with a width less than 500 pixels.
Which code segment should you use?
- A . @media resolution(max-width: 500px) {. . .}
- B . @media screen(min-width: Opx, max-width: 500px) {. . .}
- C . @media screen and (width <= 500px) {. . .}
- D . @media screen and (max-width: 500px) {. . .}
You are designing a distributed banking application that handles multiple customers. A user may log on to the site to perform activities such as checking balances, performing transactions, and other activities that must be done securely.
The application must store secure information that is specific to an individual user. The data must be automatically and securely purged when the user logs off.
You need to save transient information in a secure data store.
Which data store should you use?
- A . NET session state
- B . NET profile properties
- C . NET application state
- D . Shared database
You are developing an ASP.NET MVC application. The application must allow users to enter HTML in a feedback text box only. You need to disable request validation.
What should you do?
- A . Use the HttpRequest.Form property to read the unvalidated form value.
- B . Apply and set the Validatelnput attribute on the controller action to FALSE.
- C . Use the HttpRequest.Unvalidated property to read the unvalidated form value.
- D . Apply and set the CausesValidation attribute on the controller action to FALSE.
You are developing an ASP.NET MVC application that supports multiple cultures and multiple languages. The application will be sold to international customers.
The ASP.NET MVC application must store localized content in satellite assemblies for multiple languages.
You need to generate the satellite assemblies during an automated build.
Which tool should you use?
- A . Gacutil.exe
- B . Al.exe
- C . Ildasm.exe
- D . nasm.exe
You are preparing for the deployment of an ASP.NET MVC application. You need to generate a deployment manifest.
Which command-line tool should you use?
- A . Mage.exe
- B . Ngen.exe
- C . ALexe
- D . Resgen.exe
DRAG DROP
You are developing an ASP.NET MVC application. The application has a view that displays a list of orders in a multi-select list box.
You need to enable users to select multiple orders and submit them for processing.
What should you do? (To answer, drag the appropriate words to the correct targets. Each word 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.)