Microsoft 70-486 Exam Practice Questions (P. 3)
- 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 #11
You are developing an ASP.NET MVC application that displays stock market information.
The stock market information updates frequently and must be displayed in real-time.
You need to eliminate unnecessary header data, minimize latency, and transmit data over a full-duplex connection.
What should you do?
The stock market information updates frequently and must be displayed in real-time.
You need to eliminate unnecessary header data, minimize latency, and transmit data over a full-duplex connection.
What should you do?
- AImplement long-running HTTP requests.
- BInstantiate a MessageChannel object on the client.
- CImplement WebSockets protocol on the client and the server.
- DConfigure polling from the browser.
Correct Answer:
C
C
send
light_mode
delete
Question #12
You are designing a distributed application that runs on the Microsoft Azure platform.
The application must store a small amount of information that is shared cross all users and does not change frequently.
You need to configure the application to meet the requirements.
Which server-side state management option should you use? (Each correct answer presents a complete solution. Choose all that apply.)
The application must store a small amount of information that is shared cross all users and does not change frequently.
You need to configure the application to meet the requirements.
Which server-side state management option should you use? (Each correct answer presents a complete solution. Choose all that apply.)
- AMicrosoft Azure application state
- BSQL Database
- CProfile properties of the Microsoft Azure application
- DMicrosoft Azure session state
Correct Answer:
B
SQL Database provides a relational database management system for Windows Azure and is based on SQL Server technology. With a SQL Database instance, you can easily provision and deploy relational database solutions to the cloud, and take advantage of a distributed data center that provides enterprise-class availability, scalability, and security with the benefits of built-in data protection and self-healing.
Incorrect:
Not A: Application State does not exist in Azure.
Not C: Profile properties stores personal, not global, information.
Not D: Session state is not global. Session states handles user information such as cookies, hidden fields, and query strings are some client-side options to tracking user state
B
SQL Database provides a relational database management system for Windows Azure and is based on SQL Server technology. With a SQL Database instance, you can easily provision and deploy relational database solutions to the cloud, and take advantage of a distributed data center that provides enterprise-class availability, scalability, and security with the benefits of built-in data protection and self-healing.
Incorrect:
Not A: Application State does not exist in Azure.
Not C: Profile properties stores personal, not global, information.
Not D: Session state is not global. Session states handles user information such as cookies, hidden fields, and query strings are some client-side options to tracking user state
send
light_mode
delete
Question #13
DRAG DROP -
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:
✑ _Layout.WP7.cshtml
✑ Index.WP7.cshtml
You need to update the application so that it renders the customized files correctly to Windows Phone 7 users.
How should you update the Application_Start method? (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.)
Select and Place:

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:
✑ _Layout.WP7.cshtml
✑ Index.WP7.cshtml
You need to update the application so that it renders the customized files correctly to Windows Phone 7 users.
How should you update the Application_Start method? (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.)
Select and Place:

Correct Answer:
References:
http://techbrij.com/1013/display-mode-mobile-tablet-tv-aspnet-mvc

References:
http://techbrij.com/1013/display-mode-mobile-tablet-tv-aspnet-mvc
send
light_mode
delete
Question #14
You are developing an ASP.NET MVC web application for viewing a list of contacts. The application is designed for devices that support changes in orientation, such as tablets and smartphones. The application displays a grid of contact tiles in portrait mode.
When the orientation changes to landscape, each tile in the grid expands to include each contact's details. The HTML that creates the tiled interface resembles the following markup.

The CSS used to style the tiles in landscape mode is as follows.

If this CSS is omitted, the existing CSS displays the tiles in portrait mode.
You need to update the landscape-mode CSS to apply only to screens with a width greater than or equal to 500 pixels.
Which code segment should you use?
When the orientation changes to landscape, each tile in the grid expands to include each contact's details. The HTML that creates the tiled interface resembles the following markup.

The CSS used to style the tiles in landscape mode is as follows.

If this CSS is omitted, the existing CSS displays the tiles in portrait mode.
You need to update the landscape-mode CSS to apply only to screens with a width greater than or equal to 500 pixels.
Which code segment should you use?
- A@media screen and (width >= 500px) { "¦ }
- B@media screen and (min-width: 500px) { "¦ }
- C@media screen(min-width: 500px, max-width: 1000px) { "¦ }
- D@media resolution(min-width: 500px) { "¦ }
Correct Answer:
B
http://www.javascriptkit.com/dhtmltutors/cssmediaqueries.shtml
B
http://www.javascriptkit.com/dhtmltutors/cssmediaqueries.shtml
send
light_mode
delete
Question #15
You are developing an ASP.NET MVC application.
You need to authenticate clients by using NT LAN Manager (NTLM).
Which authentication method should you implement?
You need to authenticate clients by using NT LAN Manager (NTLM).
Which authentication method should you implement?
- ABasic
- BWindows
- CForms
- DKerberos
Correct Answer:
B
References:
http://msdn.microsoft.com/en-us/library/aa292114(v=vs.71).aspx
B
References:
http://msdn.microsoft.com/en-us/library/aa292114(v=vs.71).aspx
send
light_mode
delete
All Pages