Note: This question is part of series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question 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 need to deploy resources to host a stateless web app in an Azure subscription. The solution must meet the following requirements:
-> Provide access to the full .NET framework.
-> Provide redundancy if an Azure region fails.
-> Grant administrators access to the operating system to install custom application dependencies.
Solution: You deploy an Azure virtual machine to two Azure regions, and you deploy an Azure Application Gateway.
Does this meet the goal?
Click on the arrows to vote for the correct answer
A. B.B
You deploy an Azure virtual machine to two Azure regions, but also create a Traffic Manager profile.
The proposed solution appears to meet the stated requirements, therefore, the answer is "A. Yes".
Explanation:
To meet the requirement of providing access to the full .NET framework, a virtual machine (VM) is an appropriate choice since it provides full control over the operating system, including the ability to install custom dependencies. Additionally, deploying the VM to two Azure regions ensures that redundancy is provided in case of a region failure.
To route traffic to the VM, the solution proposes to deploy an Azure Application Gateway, which is a load balancer that can distribute incoming traffic across multiple backend servers.
Therefore, the proposed solution provides the necessary resources to host a stateless web app that meets the stated requirements.