0
0
Azurecloud~20 mins

Database backup and geo-replication in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Geo-Replication Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Geo-Replication Purpose

What is the primary benefit of enabling geo-replication for an Azure SQL Database?

AIt provides a backup copy of the database in a different region for disaster recovery.
BIt automatically scales the database compute resources based on usage.
CIt encrypts the database data at rest and in transit.
DIt compresses the database backups to save storage space.
Attempts:
2 left
💡 Hint

Think about what happens if the main region fails.

Configuration
intermediate
2:00remaining
Configuring Automated Backups

Which Azure SQL Database setting controls the retention period for automated backups?

ABackup Retention Period
BFailover Group Configuration
CBackup Storage Redundancy
DGeo-Replication Mode
Attempts:
2 left
💡 Hint

It defines how long backups are kept before deletion.

Architecture
advanced
2:30remaining
Designing for High Availability with Geo-Replication

You need to design an Azure SQL Database solution that ensures minimal downtime during a regional outage. Which architecture best achieves this?

AUse geo-backups stored in the same region as the primary database.
BUse active geo-replication with readable secondary databases in multiple regions and configure automatic failover groups.
CDeploy a single database with zone-redundant configuration within one region.
DUse only automated backups with a 7-day retention period and restore manually if needed.
Attempts:
2 left
💡 Hint

Consider automatic failover and multiple regions.

security
advanced
2:30remaining
Securing Geo-Replicated Databases

Which practice ensures data security when using geo-replication for Azure SQL Databases?

AStore geo-replicated backups in public blob storage without access controls.
BDisable encryption to improve replication speed.
CUse unencrypted backups for faster restore times.
DEnable Transparent Data Encryption (TDE) on both primary and secondary databases.
Attempts:
2 left
💡 Hint

Think about protecting data at rest.

service_behavior
expert
3:00remaining
Behavior of Failover in Geo-Replication

During a failover event in an Azure SQL Database failover group, what happens to the DNS endpoint used by applications?

AThe DNS endpoint is deleted and must be recreated after failover.
BThe DNS endpoint remains pointed to the original primary database until manually updated.
CThe DNS endpoint automatically redirects to the new primary database in the secondary region.
DThe DNS endpoint switches to a random database in any region.
Attempts:
2 left
💡 Hint

Consider how applications maintain connectivity without changes.