Microsoft 70-486 Exam Practice Questions (P. 1)
- Full Access (234 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #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.
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.
- AAnnotate HTML5 content elements with Accessible Rich Internet Application (ARIA) attributes.
- BConvert HTML5 forms to XForms.
- CEnsure that HTML5 content elements have valid and descriptive names
- DUse HTML5 semantic markup elements to enhance the pages.
- EUse Resource Description Framework (RDF) to describe content elements throughout the entire page.
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
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
send
light_mode
delete
Question #2
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:

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:

send
light_mode
delete
Question #3
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?
You detect performance issues when the application starts.
You need to resolve the performance issues.
What should you do?
- AImplement HTTP caching in the ASP.NET MVC controllers.
- BCombine the content files by using ASP.NET MVC bundling.
- CInstall a second IIS instance.
- DMove the content to a Windows Azure CDN.
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
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
send
light_mode
delete
Question #4
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?
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?
- AViewBag.Title = HttpContext.GetGlobalResourceObject("MyDictionary", "Title");
- BViewBag.Title = HttpContext.GetGlobalResourceObject("MyDictionary", "Title", new System.Globalization.CultureInfo("en"));
- CViewBag.Title = Resources.MyDictionary.Title;
- DViewBag.Title = HttpContext.GetLocalResourceObject("MyDictionary", "Title");
Correct Answer:
C
Only the Resources class is used.
C
Only the Resources class is used.
send
light_mode
delete
Question #5
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?
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?
- AWeb Test Project
- BLoad Test Project
- CUnit Test Project
- DCoded Test Project
Correct Answer:
C
C
send
light_mode
delete
All Pages