0
0
Azurecloud~20 mins

High availability design patterns in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure High Availability Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Architecture
intermediate
2:00remaining
Understanding Azure Load Balancer behavior in HA setup

You deploy two virtual machines behind an Azure Load Balancer for high availability. One VM is healthy, the other is unhealthy. What will the Load Balancer do?

AIt will send traffic to both VMs regardless of health status.
BIt will send traffic only to the healthy VM and stop sending to the unhealthy one.
CIt will stop sending traffic to both VMs until both are healthy.
DIt will send traffic only to the unhealthy VM to try to recover it.
Attempts:
2 left
💡 Hint

Think about how load balancers maintain service availability by checking health probes.

service_behavior
intermediate
2:00remaining
Azure SQL Database failover behavior in HA configuration

You configure an Azure SQL Database with geo-replication for high availability. If the primary region fails, what happens to the database endpoint?

AThe database endpoint switches to a read-only mode until manual intervention.
BThe database endpoint remains pointing to the primary region and requires manual update.
CThe database endpoint is deleted and must be recreated in the secondary region.
DThe database endpoint automatically redirects to the secondary region after failover.
Attempts:
2 left
💡 Hint

Consider how geo-replication supports automatic failover to maintain availability.

security
advanced
2:00remaining
Securing high availability Azure App Service with private endpoints

You want to secure your Azure App Service in a high availability setup by restricting access to only your virtual network. Which configuration achieves this?

AUse IP restrictions on the App Service to allow only your public IP addresses.
BDeploy the App Service in an isolated App Service Environment without private endpoints.
CEnable Private Endpoint for the App Service and integrate it with your virtual network.
DConfigure a Network Security Group to block all inbound traffic to the App Service.
Attempts:
2 left
💡 Hint

Think about how private endpoints provide secure, private connectivity within a virtual network.

Best Practice
advanced
2:00remaining
Designing multi-region high availability for Azure Storage accounts

Which Azure Storage redundancy option provides the highest availability and durability across regions?

AGeo-zone-redundant storage (GZRS)
BLocally-redundant storage (LRS)
CRead-access geo-redundant storage (RA-GRS)
DZone-redundant storage (ZRS)
Attempts:
2 left
💡 Hint

Consider redundancy that combines zone and geo replication for maximum resilience.

🧠 Conceptual
expert
2:00remaining
Impact of Azure Traffic Manager routing methods on high availability

You configure Azure Traffic Manager with multiple endpoints in different regions. Which routing method ensures traffic is sent to the closest healthy endpoint to reduce latency and maintain availability?

APerformance routing method
BPriority routing method
CWeighted routing method
DGeographic routing method
Attempts:
2 left
💡 Hint

Think about routing methods that optimize for lowest network latency.