Microsoft 070-486 Actual Free Exam Questions & Community Discussion
You are developing an ASP.NET MVC application that will be deployed to servers on multiple networks.
The application must be compatible with multiple browsers. You must track the page number that the user is viewing in search results.
You need to program the location for storing state information.
Where should you persist state information?
The application must be compatible with multiple browsers. You must track the page number that the user is viewing in search results.
You need to program the location for storing state information.
Where should you persist state information?
Correct Answer: D
Vote an answer
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?
Correct Answer: B
Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
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.)
Which SessionState mode should you use? (Each correct answer presents a complete solution. Choose all that apply.)
Correct Answer: A,B
Vote an answer
You need to ensure that developers can connect to a Windows Azure role by using RDP.
What should you do?
What should you do?
Correct Answer: A
Vote an answer
Customers download videos by using HTTP clients that support various content encodings.
You need to configure caching on the DownloadVideo action to maximize performance.
Which attribute should you add?

You need to configure caching on the DownloadVideo action to maximize performance.
Which attribute should you add?

Correct Answer: A
Vote an answer
You are developing an ASP.NET MVC application that uses forms authentication against a third-party database.
You need to authenticate the users.
Which code segment should you use?

You need to authenticate the users.
Which code segment should you use?

Correct Answer: B
Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
You are developing an ASP.NET Core MVC API microservice that calculates and provides loan rates. The microservice is configured to listen on port 6000.
The microservice must be deployed to a Docker container in Windows. You add a file named Dockerfile to the microservice project.
You need to build the Docker image.
In which order should you perform the actions? To answer, move all actions from the list of actions to the answer area and arrange them in the correct order.

The microservice must be deployed to a Docker container in Windows. You add a file named Dockerfile to the microservice project.
You need to build the Docker image.
In which order should you perform the actions? To answer, move all actions from the list of actions to the answer area and arrange them in the correct order.

Correct Answer:

1 - Use the FROM instruction to define the base image.
2 - Use the WORKDIR instruction to define the working directory.
3 - Use the COPY instruction to copy the source code into the image and then use the RUN instruction to restore NuGet packages.
4 - Use the ENTRYPOINT instruction to use the container as an executable.
5 - Use the EXPOSE instruction to specify the listen port and build and run the application.
Explanation:
Step 1: Use the FROM instruction to define the base image.
FROM creates a layer from the ubuntu Docker image.
The first FROM command is an important Docker command, allowing you to pull dependencies from other images.
Step 2: Use the WORKDIR instruction to define the working directory
The WORKDIR instruction sets the working directory for any RUN, CMD, ENTRYPOINT, COPY and ADD instructions that follow it in the Dockerfile.
Step 3: Use the COPY instructions to copy the source code into the image and then use the RUN instruction to restore NuGet packages.
Step 4: Use the ENTRYPOINT instruction to use the container as an executable Step 5: Use the EXPOSE instruction to specify the listen port and build and run the application.
References:
https://docs.docker.com/develop/develop-images/dockerfile_best-practices/
You are developing an ASP.NET MVC application that will be deployed on local Internet Information Services (IIS) servers and on an Azure Web Role.
You must log events for the application when it is deployed locally and on Azure. You must not deploy additional services.
You need to implement a logging solution.
Which two technologies can you use? Each correct answer presents a complete solution.
You must log events for the application when it is deployed locally and on Azure. You must not deploy additional services.
You need to implement a logging solution.
Which two technologies can you use? Each correct answer presents a complete solution.
Correct Answer: A,C
Vote an answer
You are developing an ASP.NET MVC application in Visual Studio 2012. The application supports multiple cultures.
The application contains three resource files in the Resources directory:

Each file contains a public resource named Currency with the localized currency symbol. 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.LocalizedCurrency to the localized currency 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:

Each file contains a public resource named Currency with the localized currency symbol. 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.LocalizedCurrency to the localized currency contained in the resource files.
Which code segment should you add to the action at line 03?
Correct Answer: D
Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
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.)
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)
Correct Answer: B,D
Vote an answer
You are developing an ASP.NET MVC application. The application includes the following code. Line numbers are included for reference only.

You add the following markup to the system.web section of the web.config file:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.


You add the following markup to the system.web section of the web.config file:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

Correct Answer:

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 develop an ASP.NET web application that is self-hosted using Open Web Interface for .NET (OWIN) in a Microsoft Azure Worker role.
The web application throws exceptions.
You need to resolve the exceptions.
Solution: Use standard HttpModule and HttpHandler types.
Does the solution meet the goal?
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 develop an ASP.NET web application that is self-hosted using Open Web Interface for .NET (OWIN) in a Microsoft Azure Worker role.
The web application throws exceptions.
You need to resolve the exceptions.
Solution: Use standard HttpModule and HttpHandler types.
Does the solution meet the goal?
Correct Answer: B
Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
You are developing a Microsoft Azure ASP.NET Core web application named onlinestore.
Users report bugs with the web application that only occur on development deployments. The bugs are in a third-party component.
You need to gather a memory dump of the running application to provide to the component vendor.
How should you construct the URI to gather the memory dump? To answer, drag the appropriate URI segments to the correct locations. Each URI segment may be used once, more than once, or mot at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

Users report bugs with the web application that only occur on development deployments. The bugs are in a third-party component.
You need to gather a memory dump of the running application to provide to the component vendor.
How should you construct the URI to gather the memory dump? To answer, drag the appropriate URI segments to the correct locations. Each URI segment may be used once, more than once, or mot at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

Correct Answer:

0
0
0
10
