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 20,2024.
- Exam Code: 70-486
- Exam Name: Developing ASP.NET MVC 4 Web Applications
- Certification Provider: Microsoft
- Latest update: Nov 20,2024
You need to secure the administrative functions for all MVC controllers.
Which code segment should you use as the body for the CreateController method in AdminVerifierFactory.cs?
- A . Option A
- B . Option B
- C . Option C
- D . Option D
Topic 4, Mixed Questions
You are developing an ASP.NET MVC application that uses forms authentication. The user database contains a user named LibraryAdmin.
You have the following requirements:
You need to implement the controller to meet the requirements.
Which code segment should you use? (Each correct answer presents a complete solution. Choose all that apply.)
- A . Option A
- B . Option B
- C . Option C
- D . Option D
DRAG DROP
You are developing an ASP.NET MVC application that takes customer orders.
Orders are restricted to customers with IP addresses based in the United States.
You need to implement a custom route handler.
How should you implement the route handler? (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.)
You are designing an HTML5 website.
You need to design the interface to make the content of the web page viewable in all types of browsers, including voice recognition software, screen readers, and reading pens.
What should you do? (Each correct answer presents a complete solution. Choose all that apply.)
- A . Annotate HTML5 content elements with Accessible Rich Internet Application (ARIA) attributes.
- B . Convert HTML5 forms to XForms.
- C . Ensure that HTML5 content elements have valid and descriptive names.
- D . Use HTML5 semantic markup elements to enhance the pages.
- E . Use Resource Description Framework (RDF) to describe content elements throughout the entire page.
DRAG DROP
DRAG DROP You are developing an ASP.NET MVC web application in Visual Studio 2012.
The application has a model named ReservationLocation that contains properties named City and State.
The view that displays reservations has a single text box named loc for entering the location information. The location is entered as city, state.
There are action methods that have ReservationLocation as a parameter type.
You need to ensure that the City and State properties are correctly populated.
How should you implement model binding for the ReservationLocation type? (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.)
You are developing an ASP.NET MVC web application in Visual Studio 2012. The application requires several thousand content files. All content is hosted on the same IIS instance as the application.
You detect performance issues when the application starts. You need to resolve the performance issues.
What should you do?
- A . Implement HTTP caching in the ASP.NET MVC controllers.
- B . Combine the content files by using ASP.NET MVC bundling.
- C . Install a second IIS instance.
- D . Move the content to a Windows Azure CDN.
You are developing an ASP.NET MVC application in Visual Studio 2012. The application supports multiple cultures.
The application contains three resource files in the Resources directory:
Each file contains a public resource named Title with localized translation. The application is configured to set the culture based on the client browser settings.
The application contains a controller with the action defined in the following code segment. (Line numbers are included for reference only.)
You need to set ViewBag.Title to the localized title contained in the resource files.
Which code segment should you add to the action at line 03?
- A . ViewBag.Title = HttpContext.GetGlobalResourceObuect("MyDictionary", "Title");
- B . ViewBag.Title = HttpContext.GetGlobalResourceObject("MyDictionary", "Title",new System.Globalization.CultureInfo("en"));
- C . ViewBag.Title = Resources.MyDictionary.Title;
- D . ViewBag.Title = HttpContext.GetLocalResourceObject("MyDictionary", "Title");
You are testing an ASP.NET application. The test plan requires that tests run against the application’s business layer. You need to use the test project template that meets this requirement.
Which template should you use?
- A . Web Test Project
- B . Load Test Project
- C . Unit Test Project
- D . Coded Test Project
You are authoring unit tests.
The unit tests must test code that consumes sealed classes.
You need to create, maintain, and inject dependencies in the unit tests.
Which isolation method should you use?
- A . T4 text templates and code generation
- B . Stub types
- C . Shim types
- D . Hard-coded implementation
You are developing an ASP.NET MVC web application that includes the following method.
You need to test the AccountBalance method.
Which unit test should you use?
- A . Option A
- B . Option B
- C . Option C
- D . Option D