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
HOTSPOT
You need to implement the mobile device support requirements.
How should you build the ProcessRequest method? (To answer, select the appropriate options in the answer area.)
You need to modify the application to meet the productId requirement.
Which code segment should you use?
- A . Option A
- B . Option B
- C . Option C
- D . Option D
You need to implement the business requirements for managing customer data.
What should you do? Each correct answer presents part of the solution. Choose all that apply.
- A . Add a folder named Customer to the Views folder. Then create a view inside this folder named Edit.aspx.
- B . Add a folder named EditCustomer to the Views folder. Then create a view inside this folder named Catalog.aspx.
- C . Add a class named CustomerController to the Controllers folder. Then add a method named Edit to the class.
- D . Add a class named Catalog to the Controllers folder. Then add a method named EditCustomer to the class.
When users attempt to retrieve a product from the product page, a run-time exception occurs if the product does not exist. You need to route the exception to the CustomException.aspx page.
Which method should you add to MvcApplication?
- A . Option A
- B . Option B
- C . Option C
- D . Option D
You updated the web.config file with the HTTP run-time value required to display an alternative version of the site.
You need to ensure that the correct page displays to the users.
Which code segment should you use to update the controller?
- A . If (Request.IsTabletDevice)
- B . If (Request.Browser.IsBrowser("Mobile"))
- C . If (Request.UserAgent["Tablet"])
- D . If (Request.Browser.IsMobileDevice)
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 . $("body h1:nth-child(1)").fadeIn(1000);
- B . $("body h1:nth-child(1)").fadeOut(1000);
- C . $("body h1:nth-child(1)").animate({ opacity: 0 });
- D . $("body h1:nth-child(1)").animate({ opacity: 1 });
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);
You need to configure session storage in the web.config file to meet the technical requirements for scalability.
Which SessionState mode should you use? (Each correct answer presents a complete solution. Choose all that apply.)
- A . StateServer
- B . InProc
- C . AutoDetect
- D . SqlServer
You need to update the routes to ensure that a product is always displayed on the product page.
Which code segment should you use?
- A . Option A
- B . Option B
- C . Option C
- D . Option D
The GetDealPrice method must be called by using Ajax.
You need to get the price of a product by using the GetDealPrice method of the ProductController.
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