All practice questions

1186 questions

Question 981Question

An organization is deploying a business-critical database to Azure. To meet their Service Level Agreement (SLA), the database infrastructure must be resilient against localized disasters, such as a physical datacenter power outage or cooling failure. However, due to strict regulatory compliance, all data and associated compute resources must remain within the primary geographical region. Which Azure feature should the organization implement to meet these requirements?

Show answer & explanation

Answer: Availability Zones within the primary region

Answer

Availability Zones within the primary region
The correct option is the one specifying Availability Zones within the primary region. Availability Zones are physically separate datacenters within a single Azure region. Each zone has independent power, cooling, and networking. This design protects the application from a localized datacenter outage while ensuring all data and compute resources remain strictly within the geographical boundaries of the primary region to meet compliance rules.

Step-by-Step Solution

1
Analyze the resiliency requirements.
The infrastructure must withstand a localized physical datacenter failure (power/cooling outage).
This determines that we need physical redundancy of datacenters (either Availability Zones or replication to another region).
2
Analyze the residency constraint.
All resources and data must reside entirely within the primary geographical region.
This rules out cross-region replication solutions (such as Region Pairs) and mandates a single-region high availability solution.
3
Evaluate the architectural options that satisfy both conditions.
Availability Zones provide independent power, cooling, and networking within a single region. Resource Groups are logical containers and do not provide physical redundancy. Availability Zones cannot span regions.
Only Availability Zones within the primary region satisfy both the single-region data residency constraint and the datacenter-level fault isolation requirement.

Key Concept

Azure Availability Zones support high availability and residency by providing physically isolated datacenters within a single region.
Question 982Question

A company is planning to deploy a database in Azure. To comply with local data residency laws, all database replicas must reside within the same geographic region. However, the database must remain highly available even if an entire datacenter within that region experiences a power outage or cooling system failure. Which Azure feature should the company use to meet these requirements?

Show answer & explanation

Answer: Availability Zones

Answer

Availability Zones
Availability Zones are unique physical locations within an Azure region. Each zone is made up of one or more datacenters equipped with independent power, cooling, and networking. By deploying resources across Availability Zones, organizations achieve high availability and protection against localized datacenter failures while ensuring all data remains within the boundaries of the single chosen region.

Step-by-Step Solution

1
Analyze the high availability requirement.
The application must survive a datacenter-level failure, such as a localized power or cooling outage.
This indicates a need for physical isolation between datacenters within the deployment boundary.
2
Analyze the data residency constraint.
All data replicas must remain within the same geographic region.
This rules out multi-region replication architectures like Region Pairs.
3
Select the Azure feature that offers intra-region datacenter redundancy.
Availability Zones provide physically separate datacenters with independent infrastructure inside a single region.
Deploying across Availability Zones satisfies both high availability (independent power/cooling) and data residency within the same region.

Key Concept

Azure Availability Zones provide high availability within a single region by using physically isolated datacenters with independent power, cooling, and networking.
Estimated Time:45s
Question 983Question

An Azure administrator creates a resource group in the East US region to organize company assets. The administrator now needs to deploy a virtual machine into this resource group. Which of the following statements is true regarding the region restriction for the virtual machine?

Show answer & explanation

Answer: The virtual machine can be deployed in a different region, such as West Europe, even though the resource group is in East US.

Answer

The virtual machine can be deployed in a different region, such as West Europe, even though the resource group is in East US.
In Azure, resources can be located in a different region than the resource group that contains them. A resource group requires a location to store metadata about its resources, but this does not restrict where the actual resources can be deployed.

Step-by-Step Solution

1
Analyze the relationship between the location of an Azure resource group and the location of the resources within it.
Identify that a resource group's location specifies where its metadata is stored, and it does not restrict the deployment location of the resources it holds.
To determine if the virtual machine must be in the same region as its resource group.
2
Evaluate the option stating that the resource can be in a different region.
The statement matches Azure's architecture rule allowing resource group location and resource location mismatch.
To verify the correct answer.

Key Concept

Azure resources can be deployed to a different region than their containing resource group.
Question 984Question

Is the following statement true or false?

Deploying a web application across multiple Azure Availability Zones to protect against localized data center outages achieves high availability, while configuring an autoscale rule to dynamically add virtual machine instances when application traffic increases achieves elasticity.

Show answer & explanation

Answer: True

Answer

True
The statement is true because deploying across Availability Zones mitigates localized physical failures, ensuring service continuity (high availability), while configuring autoscale rules dynamically adjusts the count of virtual machines in response to load variations (elasticity).

Step-by-Step Solution

1
Analyze the first clause regarding deploying a web application across multiple Azure Availability Zones.
Deploying across multiple zones ensures that if a single zone experiences an outage, the application remains operational in other zones. This redundancy directly provides high availability.
To determine if the high availability concept is correctly defined by zone distribution.
2
Analyze the second clause regarding configuring an autoscale rule to dynamically add instances as traffic increases.
Autoscale rules allow compute resources to scale out (and scale in) automatically based on real-time application load. This automatic and dynamic allocation of resources defines elasticity.
To determine if the elasticity concept is correctly defined by dynamic autoscaling.
3
Evaluate the combined statement to determine its truth value.
Both clauses are accurate mappings of their respective cloud concepts, making the overall statement true.
To synthesize the findings and select the correct answer.

Key Concept

High Availability and Elasticity in Azure
Question 985Question

A global shipping company hosts its core inventory database in a local datacenter to comply with strict national data sovereignty laws. The company deploys a web-based portal on Microsoft Azure to allow international partners to query real-time shipping status. The portal securely retrieves data from the local database. Which cloud deployment model is described in this scenario?

Show answer & explanation

Answer: A hybrid cloud

Answer

A hybrid cloud
The correct answer is a hybrid cloud because the organization is combining its private on-premises infrastructure (the local datacenter hosting the inventory database) with a public cloud provider (Microsoft Azure hosting the web portal) to work together as a single connected system.

Step-by-Step Solution

1
Identify the hosting locations of the resources described in the scenario.
The core inventory database is hosted in a local datacenter (on-premises/private infrastructure), and the web-based portal is hosted on Microsoft Azure (public cloud).
Understanding where resources reside is the first step in identifying the deployment model.
2
Analyze how these two hosting environments interact.
The web-based portal on Azure securely connects to and retrieves data from the local database on-premises.
Determining the connection and data flow between private and public environments distinguishes hybrid setups from isolated deployments.
3
Select the cloud model that represents this combined and connected configuration.
A hybrid cloud model is the correct classification for an architecture that integrates on-premises infrastructure with public cloud services.
This matches the definition of a hybrid cloud, which allows data and apps to be shared between private and public cloud environments.

Key Concept

Cloud Models (Public, Private, Hybrid, Multi-cloud)
Question 986Question

A healthcare startup is deploying an application in Azure. The compliance team requires that all patient data storage accounts be located in the UK South region. The application's virtual machines must be deployed in the West Europe region. The IT team wants to deploy, manage, and delete all of these resources together as a single logical unit. Which resource organization strategy should the administrator implement to meet these requirements?

Show answer & explanation

Answer: Deploy all resources in a single resource group, selecting UK South for the storage accounts and West Europe for the virtual machines during deployment.

Answer

Deploy all resources in a single resource group, selecting UK South for the storage accounts and West Europe for the virtual machines during deployment.
Deploying all resources in a single resource group with their respective locations is correct because Azure resource groups are logical containers designed to manage the lifecycle of related resources together. A resource group can contain resources from different geographical regions, and resources do not inherit or copy the location of their containing resource group.

Step-by-Step Solution

1
Identify the primary administrative requirement.
The IT team needs to manage the lifecycle (create, update, delete) of the virtual machines and storage accounts together as a single logical unit.
This requirement aligns with the primary purpose of an Azure resource group.
2
Evaluate the regional constraints.
The storage accounts must be in UK South, and the virtual machines must be in West Europe.
We must verify whether a single resource group can span multiple regions.
3
Apply Azure resource group regional and structural rules.
An Azure resource group can contain resources located in different regions, and resource groups cannot be nested.
Because resources do not inherit their location from the resource group and nesting is unsupported, the best approach is to place all resources in one resource group and specify their target regions during deployment.

Key Concept

Azure Resource Groups regional independence and lifecycle management
Question 987Question

A logistics company is deploying a critical inventory management application in Azure. The application's virtual machines must remain operational if a physical datacenter within their selected Azure region experiences a localized power or cooling failure. Additionally, compliance regulations dictate that all data and virtual machines must remain strictly within the geographical boundaries of this primary region. Which Azure architectural feature should you implement to meet these requirements?

Show answer & explanation

Answer: Availability Zones

Answer

Availability Zones
The correct answer is the option specifying Availability Zones. Availability Zones are physically separate locations within a single Azure region. Each zone is made up of one or more datacenters equipped with independent power, cooling, and networking. This design protects the application from localized datacenter failures while fully complying with the requirement to keep all resources within the primary region's geographical boundaries.

Step-by-Step Solution

1
Analyze the customer's high availability and physical isolation requirements.
The solution must protect against localized datacenter failures (power/cooling outages).
This establishes the need for independent infrastructure zones within a deployment.
2
Analyze the customer's compliance and data residency constraints.
All virtual machines and data must remain within the primary region's boundaries.
This rules out multi-region strategies, including region pairs or geographic distribution.
3
Identify the Azure service that provides datacenter-level redundancy within a single region.
Availability Zones offer isolated datacenters with independent power, cooling, and networking within one region.
This satisfies both the physical isolation requirement and the regional data residency constraint.

Key Concept

Availability Zones provide high availability and fault tolerance within a single Azure region by isolating physical datacenters.
Question 988Question

An Azure region is defined as a single physical datacenter located within a specific geographic boundary. Is this definition of an Azure region correct?

Show answer & explanation

Answer: False

Answer

The statement is false because an Azure region consists of a set of datacenters connected by a low-latency network, not a single physical datacenter.
The definition is false because an Azure region contains one or more datacenters connected through a dedicated regional low-latency network, rather than being just a single physical datacenter.

Step-by-Step Solution

1
Analyze the definition of an Azure region.
An Azure region is defined as a set of datacenters deployed within a latency-defined perimeter and connected through a dedicated regional low-latency network.
To verify if the statement's description of a region as a single datacenter is correct.
2
Compare the actual definition with the statement in the question.
The statement incorrectly limits a region to a single physical datacenter, which contradicts Azure's multi-datacenter regional architecture.
To evaluate the correctness of the statement.

Key Concept

Azure Region Definition
Question 989Question

A company plans to deploy a new web API to Azure using Platform as a Service (PaaS) to reduce administrative overhead.

Which two of the following responsibilities are managed by the cloud provider (Microsoft) in this PaaS model? (Select two.)

Select all that apply

Show answer & explanation

Answer: Patching and updating the operating system hosting the web API; Maintaining the physical servers, storage, and virtualization infrastructure

Answer

The cloud provider manages the patching and updating of the operating system hosting the web API, as well as the maintenance of physical servers, storage, and virtualization infrastructure.
Under the Platform as a Service (PaaS) model, the cloud provider manages the underlying infrastructure, virtualization, and the operating system (including patching and updates). This allows the customer to focus on deploying application code and managing data without worrying about host-level maintenance.

Step-by-Step Solution

1
Identify the cloud deployment model described in the scenario.
The scenario specifies a Platform as a Service (PaaS) model.
Understanding the specific cloud service model determines how responsibilities are shared between the customer and Microsoft.
2
Differentiate between customer and provider responsibilities under the PaaS shared responsibility model.
The cloud provider manages operating systems, physical hardware, and virtualization. The customer remains responsible for application code, data, and access configurations.
This division of labor allows the company to minimize administrative overhead by offloading OS patching and infrastructure maintenance to Microsoft.

Key Concept

Shared responsibility model in Platform as a Service (PaaS)
Estimated Time:45s
Question 990Question

A retail company wants to migrate a legacy database application to Azure. The application requires specific kernel-level configuration changes to the hypervisor hosting the virtual machines. Does an Infrastructure as a Service (IaaS) deployment model allow the customer to access and modify the underlying hypervisor?

Show answer & explanation

Answer: False

Answer

False
In an Infrastructure as a Service (IaaS) model, Microsoft manages the physical servers, datacenter network hardware, and the hypervisor layer that runs the virtual machines. The customer does not have access or permissions to modify the hypervisor.

Step-by-Step Solution

1
Identify the resource types and layers in an IaaS model (e.g., Azure VMs).
IaaS provides virtualized compute resources such as virtual machines.
Understanding the service model helps locate where the administrative boundary lies.
2
Determine who is responsible for the hypervisor layer in the shared responsibility model.
Microsoft manages the physical servers, network hardware, and the hypervisor layer.
Defining the specific responsibility boundary clarifies what the customer can and cannot access.
3
Conclude whether the customer can perform hypervisor-level modifications.
The customer cannot modify the hypervisor and must work within the guest operating system layer.
Since the hypervisor is managed by the cloud provider, it is inaccessible to the customer.

Key Concept

Shared responsibility boundaries in Infrastructure as a Service (IaaS)
Question 991Question

A retail company needs to deploy temporary virtual workstations for 500500 customer service agents during a seasonal shopping event. The solution must meet the following requirements:
- Minimize the administrative overhead of managing the virtual desktop connection brokers and gateways.
- Reduce compute costs by allowing multiple agents to run separate concurrent sessions on the same underlying virtual machine.
- Automatically scale down compute resources during low-demand night shifts to optimize spending.

Which Azure deployment approach should the company implement?

Show answer & explanation

Answer: Azure Virtual Desktop using a pooled host pool

Answer

Azure Virtual Desktop using a pooled host pool
The correct option is the one stating Azure Virtual Desktop using a pooled host pool. Azure Virtual Desktop is a managed service that handles connection brokers and gateways, meeting the administrative overhead constraint. Using a pooled host pool configuration enables Windows multi-session, allowing multiple users to run concurrent workloads on the same virtual machine resources to reduce costs. Additionally, it supports autoscale capabilities to dynamically shut down virtual machines when they are not in use during off-peak hours.

Step-by-Step Solution

1
Evaluate the management responsibility requirements for the virtual desktop infrastructure.
Azure Virtual Desktop (AVD) is selected over standard Azure Virtual Machines because AVD provides a Microsoft-managed control plane, removing the need to configure and maintain connection brokers and gateways.
This satisfies the requirement to minimize administrative overhead.
2
Determine the host pool configuration required to support resource sharing and reduce compute costs.
A pooled host pool must be chosen because it supports Windows client multi-session deployments.
This allows multiple customer service agents to run concurrent sessions on the same underlying VM, whereas a personal host pool assigns VMs on a 1:11:1 basis.
3
Identify the scaling mechanism to optimize compute costs during off-peak times.
AVD autoscale features can be configured to automatically shut down or start session host VMs based on capacity thresholds and time schedules.
This satisfies the requirement to scale down resources during low-demand night shifts.

Key Concept

Azure Virtual Desktop configurations and managed host pools
Question 992Question

You need to host a new web-based application on Azure and upload your custom code directly to the platform. The solution must ensure that Microsoft automatically manages all underlying web server configurations and operating system patching. Which Azure service should you use?

Show answer & explanation

Answer: Azure App Service

Answer

Azure App Service
Azure App Service is the correct choice because it is a Platform as a Service (PaaS) environment optimized for hosting web applications. It allows developers to deploy code directly while Microsoft automatically handles infrastructure maintenance, OS patching, and scaling.

Step-by-Step Solution

1
Analyze the application requirements.
The application is a standard web application, requires direct code deployment, and demands zero management of the operating system or web server patching.
This establishes that a Platform as a Service (PaaS) solution is required rather than Infrastructure as a Service (IaaS) or container-based solutions.
2
Evaluate the available Azure compute options.
Azure App Service hosts web applications and manages the infrastructure, OS, and runtime automatically.
Azure App Service matches all criteria for hosting web applications with automated maintenance and code-first deployment.

Key Concept

Azure App Service provides a fully managed Platform as a Service (PaaS) environment specifically designed for hosting web applications without the administrative overhead of managing servers.
Question 993Question

A company is evaluating different cloud deployment models for its various IT workloads. Match each business scenario to the cloud model that best meets the described requirements.

Click a left item, then click its matching right item

Items

A banking corporation hosts a legacy transaction engine in a dedicated, physically isolated on-premises environment to meet strict hardware-level compliance regulations.
A startup deploys a mobile app on shared infrastructure that automatically scales to handle unpredictable traffic spikes without upfront capital expenditure.
An e-commerce platform hosts its public web catalogs on shared public infrastructure while keeping sensitive payment processing systems in its own local datacenter.
A media agency distributes its workloads between two distinct public cloud providers to leverage specific services and prevent vendor lock-in.

Matches

Show answer & explanation

Answer

The banking corporation's dedicated physical environment matches the Private cloud; the startup's scaling mobile app matches the Public cloud; the e-commerce platform's combination of public catalog and local private database matches the Hybrid cloud; and the media agency's use of two public cloud providers matches the Multi-cloud.
Each business scenario is aligned to the cloud model that matches its specific resource sharing, compliance, and integration requirements. Private cloud provides the isolated compliance environment required by the bank. Public cloud delivers the low-capital scale required by the startup. Hybrid cloud bridges the public web tier and private database tier for the e-commerce platform. Multi-cloud utilizes multiple public clouds for the media agency.

Step-by-Step Solution

1
Analyze the banking scenario.
The requirements specify a dedicated, physically isolated on-premises environment for compliance, which corresponds to a Private cloud.
Private clouds offer dedicated infrastructure and maximum control for regulatory compliance.
2
Analyze the startup scenario.
The requirements describe shared infrastructure, automatic scaling, and no upfront capital costs, which corresponds to a Public cloud.
Public clouds provide cost-effective scale on shared infrastructure with a pay-as-you-go model.
3
Analyze the e-commerce scenario.
The architecture combines public catalog hosting (public cloud) with localized payment databases (on-premises private environment), which corresponds to a Hybrid cloud.
Hybrid cloud connects public cloud services with private/on-premises infrastructure to distribute workloads based on compliance and security.
4
Analyze the media agency scenario.
The agency distributes its workloads between two distinct public cloud providers to utilize best-of-breed services and prevent vendor lock-in, which corresponds to a Multi-cloud model.
Multi-cloud refers to using services from two or more public cloud providers.

Key Concept

Cloud deployment models define the ownership, accessibility, and location of the underlying infrastructure.
Estimated Time:1m 30s
Question 994Question

A company is designing a disaster recovery plan for a database hosted in the East US region. The company needs to replicate the database to a secondary region located at least 300 miles away to ensure business continuity in the event of a major outage affecting the entire primary region.

Which Azure feature represents this default secondary geographic relationship?

Show answer & explanation

Answer: Azure Region Pairs

Answer

Azure Region Pairs
Azure Region Pairs is the correct answer because Azure automatically pairs regions within the same geography (such as East US and West US) at a distance of at least 300 miles. This relationship is specifically designed for disaster recovery, allowing services like Azure Storage to replicate data to a secondary region to protect against regional outages.

Step-by-Step Solution

1
Identify the goal of the company.
The company wants to replicate data to a secondary region located at least 300 miles away to recover from a primary regional outage.
This establishes that the requirement is for regional disaster recovery (DR) rather than local high availability (HA).
2
Select the Azure feature designed for cross-region disaster recovery at a distance.
Azure Region Pairs is the feature that links two regions within the same geography at a physical distance of at least 300 miles.
This relationship allows for automatic replication of certain services and provides isolated recovery environments during regional outages.

Key Concept

Azure Region Pairs are designated pairs of regions within the same geography located at least 300 miles apart to facilitate disaster recovery and regional resiliency.
Estimated Time:45s
Question 995Question

An organization is designing its resource topology in Microsoft Azure for a new multi-tier application. The team wants to ensure their management structure is valid while minimizing administrative overhead.

Which of the following describes a valid configuration for Azure resources, resource groups, or subscriptions?

Show answer & explanation

Answer: A virtual machine is deployed in the East Asia region while its containing resource group is located in the West US region.

Answer

A virtual machine is deployed in the East Asia region while its containing resource group is located in the West US region.
The configuration specifying a virtual machine deployed in the East Asia region while its containing resource group is located in the West US region is correct because a resource group's location only defines where its metadata is stored. The actual resources deployed within that resource group can reside in any Azure region.

Step-by-Step Solution

1
Analyze the rule regarding resource group boundaries and nesting.
Resource groups cannot contain other resource groups, so nested resource groups are invalid.
This rules out the configuration involving nested resource groups.
2
Analyze the rule regarding tag inheritance.
Resources do not automatically inherit tags applied to their resource group.
This rules out the configuration claiming automatic tag inheritance.
3
Analyze the rule regarding resource and resource group locations.
A resource group's location is only for storing its metadata. Resources can reside in any supported Azure region regardless of their resource group's location.
This confirms that deploying a virtual machine in East Asia within a resource group in West US is a valid configuration, while ruling out the requirement that all resources must match the resource group's region.

Key Concept

Azure resource group locations and boundaries
Question 996Question

A company is planning to deploy a web application on Azure virtual machines. The design requirements specify that the application must remain online even if a power or cooling failure causes an outage at an entire datacenter facility. At the same time, network latency between the virtual machines must be kept to a minimum.

Which Azure architectural feature should the company use to meet these requirements?

Show answer & explanation

Answer: Availability Zones

Answer

Availability Zones
Availability Zones are correct because they offer physical isolation within the same Azure region, providing independent power, cooling, and networking. This layout protects virtual machine workloads from a single datacenter outage while keeping network latency to a minimum since all zones reside within the same geographical region.

Step-by-Step Solution

1
Analyze the requirement for low latency and protection against datacenter-level power or cooling outages.
Identify that the solution must reside within a single region to keep latency minimal, while using physically isolated infrastructure.
Regional separation (such as Region Pairs) increases latency, and logical boundaries (such as Resource Groups) do not provide physical isolation.
2
Compare Availability Zones against the requirements.
Confirm that Availability Zones provide separate physical locations (with independent power, cooling, and networking) within the same region.
This architecture protects against single-facility failures while maintaining low latency.

Key Concept

Azure Availability Zones provide high availability within a region by isolating resources across separate physical datacenters with independent power, cooling, and networking.
Estimated Time:1m 0s
Question 997Question

An online multiplayer game startup hosts its matchmaking servers on Azure. During a global tournament weekend, the number of active concurrent players spikes from 5,000 to 150,000. The hosting environment automatically spins up new server instances in real-time to match the matchmaking queues, and then deprovisions them as soon as the tournament ends and the player count returns to normal. Which cloud concept is directly illustrated by this rapid, automatic adjustment of compute capacity?

Show answer & explanation

Answer: Elasticity

Answer

Elasticity
The correct answer is elasticity because the scenario describes a system that automatically scales up (adds servers) and scales down (removes servers) in real-time to match fluctuating player demand.

Step-by-Step Solution

1
Analyze the workload characteristics in the scenario.
The concurrent player count spikes rapidly (from 5,000 to 150,000) during a tournament and then returns to normal.
Understanding the nature of the demand fluctuation helps determine the cloud characteristic needed.
2
Evaluate how the resources are managed in response to this demand.
The hosting environment automatically provisions new server instances during the peak and deprovisions them when demand falls.
This automatic, bidirectional adjustment of resources directly corresponds to the definition of elasticity.

Key Concept

Elasticity vs. Scalability
Question 998Question

A company is planning to deploy a virtual desktop environment for its customer support team. The team requires access to a shared pool of virtualized Windows 11 desktops. Each team member must be able to log in to any available virtual machine in the pool and find their personalized files and application settings loaded automatically. The company wants to minimize costs by hosting multiple active user sessions on each virtual machine, while avoiding the management of remote desktop gateway infrastructure. Which Azure service should the company deploy to meet these requirements?

Show answer & explanation

Answer: Azure Virtual Desktop

Answer

Azure Virtual Desktop
Azure Virtual Desktop is a managed service that delivers desktop and application virtualization. It provides a Microsoft-managed control plane (eliminating the need to deploy and manage remote desktop gateways and connection brokers) and supports multi-session Windows 11. This allows multiple users to log into the same virtual machine simultaneously while FSLogix ensures that user profiles persist and load dynamically regardless of which host in the pool they connect to.

Step-by-Step Solution

1
Analyze the requirements: multi-session desktop hosting, personalized profiles roaming across a pool of VMs, and avoiding the management of remote desktop gateway infrastructure.
Identified that the solution must support multi-session client operating systems (Windows 11 multi-session) and offer a Microsoft-managed control plane.
This narrows down the options to services that provide managed desktop virtualization.
2
Evaluate the difference between Azure Virtual Desktop and standard Azure Virtual Machines (IaaS).
Standard Azure Virtual Machines (even in a Virtual Machine Scale Set) do not natively support multi-session Windows 11. Manually configuring Remote Desktop Services (RDS) on Windows Server VMs is an IaaS solution that requires the customer to configure and manage gateways and brokers.
This eliminates the virtual machine and RDS options, as they either fail the multi-session requirement or fail the managed infrastructure requirement.
3
Evaluate Azure Virtual Desktop features.
Azure Virtual Desktop provides multi-session Windows 11 client hosting, handles connection brokering and gateway management, and uses FSLogix profile containers to roam profiles seamlessly across VMs.
This confirms Azure Virtual Desktop satisfies all the specified requirements.

Key Concept

Azure Virtual Desktop provides a managed desktop and app virtualization service, supporting multi-session Windows 11 hosting and handling the control plane (gateways, connection brokers) while offering user profile persistence.
Estimated Time:2m 0s
Question 999Question

An organization is planning to migrate its database workloads to Azure and wants to establish a disaster recovery plan using paired regions. Is the following statement true or false?

'Azure automatically replicates all deployed resources and their configurations to the designated paired region to ensure automatic failover during a regional outage.'

Show answer & explanation

Answer: False

Answer

The statement is false. Azure does not automatically replicate resources or configure failover to paired regions; this must be configured manually by the customer.
The correct evaluation is false. Azure paired regions do not automatically replicate resources or perform automatic failovers by default. The customer must configure replication options and failover strategies for their specific services.

Step-by-Step Solution

1
Evaluate the default replication behavior of Azure paired regions.
Although Azure pairs regions geographically to facilitate disaster recovery, it does not automatically replicate deployed resources or configurations.
Replication is a customer-configured option that varies by service (e.g., configuring Geo-Redundant Storage or SQL active geo-replication).
2
Evaluate the failover process during a regional outage.
Automatic failover to a paired region is not a default global behavior for Azure resources.
Customers must define and configure disaster recovery strategies and failover policies under the shared responsibility model.

Key Concept

Customer responsibility for replication and failover in Azure paired regions
Question 1000Question

An organization deploys a database management system (DBMS) on an Azure Virtual Machine (IaaS). Is Microsoft responsible for configuring the database backups and database software updates?

Show answer & explanation

Answer: False

Answer

False
Microsoft is not responsible for configuring backups or applying software updates to a database management system (DBMS) installed on an Azure Virtual Machine. Because Azure Virtual Machines are an Infrastructure as a Service (IaaS) offering, the customer is responsible for configuring, maintaining, and updating all applications and data running on the guest operating system.

Step-by-Step Solution

1
Identify the cloud service model and the resource type in the scenario.
The scenario involves a database management system (DBMS) deployed on an Azure Virtual Machine, which is an Infrastructure as a Service (IaaS) model.
Azure Virtual Machines are classified as IaaS because they provide compute infrastructure while leaving the operating system and application management to the customer.
2
Apply the shared responsibility model to determine ownership of the application layer.
In IaaS, the cloud provider manages the physical hosts, network, datacenter, and hypervisor. The customer is responsible for the guest OS, network controls, applications, and data.
Since a DBMS is an application running on top of the operating system, its configuration, patching, updates, and backups fall under the customer's responsibility.

Key Concept

In the Infrastructure as a Service (IaaS) model, the cloud provider manages the underlying physical infrastructure and virtualization layer, while the customer is responsible for the guest operating system, applications, databases, and configuration.
PreviousPage 50 / 60Next
All practice questions — Microsoft Azure Fundamentals (AZ-900) | Examkin