Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
sale

Want to Unlock All Questions for this Exam?

Full Exam Access, Discussions, No Robots Checks

Microsoft 70-486 Exam Actual Questions

The questions for 70-486 were last updated on March 18, 2024.
  • Viewing page 1 out of 47 pages.
  • Viewing questions 1-5 out of 242 questions

Topic 1 - Question Set 1

Question #1 Topic 1

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 are two possible ways to achieve the goal? Each correct answer presents a complete solution.

  • 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.
Reveal Solution Hide Solution   Discussion   12

Correct Answer: AD 🗳️
A: The aria-describedby property may be used to attach descriptive information to one or more elements through the use of an id reference list. The id reference list contains one or more unique element ids.
D: A semantic element clearly describes its meaning to both the browser and the developer.
References:
https://www.w3.org/TR/WCAG20-TECHS/ARIA1.html
https://www.w3schools.com/html/html5_semantic_elements.asp

Question #2 Topic 1

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.)
Select and Place:

Reveal Solution Hide Solution   Discussion   4

Correct Answer:

Question #3 Topic 1

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.
Reveal Solution Hide Solution   Discussion   2

Correct Answer: B 🗳️
Bundling is a new feature in ASP.NET 4.5 that makes it easy to combine or bundle multiple files into a single file. You can create CSS, JavaScript and other bundles. Fewer files means fewer HTTP requests and that can improve first page load performance.
References:
https://www.asp.net/mvc/overview/performance/bundling-and-minification

Question #4 Topic 1

You are developing an ASP.NET MVC application in Visual Studio. The application supports multiple cultures.
The application contains three resource files in the Resources directory:
✑ MyDictionary.resx
✑ MyDictionary.es.resx

MyDictionary.fr.resx -

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.GetGlobalResourceObject("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");
Reveal Solution Hide Solution   Discussion   4

Correct Answer: C 🗳️
Only the Resources class is used.

Question #5 Topic 1

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
Reveal Solution Hide Solution   Discussion   3

Correct Answer: C 🗳️

Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...