70-486 Developing ASP.NET MVC 4 Web Applications

Loading demo links...

Showing 10–12 of 15 questions

Question 10 (Mixed Questions)

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some questions sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You are developing an ASP.NET Core MVC web application.

The application must be exposed to external users over ports 80 and 443 and must meet the following requirements:

Handle more than 1024 simultaneous connections.

Support Windows authentication.

Support HTTP/2 over TLS.

Include response caching.

Protect against denial-of-service attacks.

You need to deploy the application to an on-premises web server.

Solution: You deploy the application to HTTP.sys.

Does the solution meet the goal?

Select an option, then click Submit answer.

  • Yes

  • No

Question 11 (Mixed Questions)

You are designing an ASP.NET Core MVC application that handles multiple customers. A user may log on to the site to perform activities such as checking balances, performing transactions, and other activities that must be done securely.

The application must store secure information that is specific to an individual user. The data must be automatically and securely purged when the user logs off.

You need to save transient information in a secure data store.

Which data store should you use?

Select an option, then click Submit answer.

  • ASP.NET session state

  • ASP.NET profile properties

  • shared database

  • ASP.NET application state

Question 12 (Mixed Questions)

You are developing an ASP.NET MVC application that provides instant messaging capabilities to customers.

You have the following requirements:

Messages must be able to be sent and received simultaneously.

Latency and unnecessary header data must be eliminated. The application must comply with HTML5 standards.

You need to design the application to meet the requirements.

What should you do?

Select an option, then click Submit answer.

  • Configure polling from the browser.

  • Implement long-running HTTP requests.

  • Implement WebSockets protocol on the client and the server.

  • Instantiate a MessageChannel object on the client.