mediummultiple choiceObjective-mapped

A company runs a critical SQL Server database on Azure Virtual Machines in a single region. They need a disaster recovery solution across regions with a recovery point objective (RPO) of zero. The database is update-intensive with frequent writes. Which configuration should they implement?

Question 1mediummultiple choice
Full question →

A company runs a critical SQL Server database on Azure Virtual Machines in a single region. They need a disaster recovery solution across regions with a recovery point objective (RPO) of zero. The database is update-intensive with frequent writes. Which configuration should they implement?

Answer choices

Why each option matters

Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.

A

Distractor review

SQL Server Always On Availability Group with asynchronous commit.

Asynchronous commit ensures no impact on primary performance but can result in data loss if a failover occurs before the secondary is synchronized. This option does not guarantee zero RPO.

B

Best answer

SQL Server Always On Availability Group with synchronous commit across regions.

Synchronous commit ensures all transactions are committed on both the primary and secondary replicas before acknowledging the commit to the application. If configured across regions, this provides zero data loss (RPO=0). But network latency can affect write performance.

C

Distractor review

Azure Site Recovery to another region.

Azure Site Recovery typically provides RPO of a few minutes (asynchronous replication). It cannot guarantee zero data loss because replication is not synchronous.

D

Distractor review

Deploy the VMs in a different availability zone within the same region.

Availability zones protect against datacenter failures within a region, not against a full regional outage. This does not meet the cross-region requirement.

Common exam trap

Common exam trap: NAT rules depend on direction and matching traffic

NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.

Technical deep dive

How to think about this question

NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.

KKey Concepts to Remember

  • Static NAT maps one inside address to one outside address.
  • PAT allows many inside hosts to share one public address using ports.
  • Inside local and inside global describe the private and translated addresses.
  • NAT ACLs identify traffic for translation, not always security filtering.

TExam Day Tips

  • Identify inside and outside interfaces first.
  • Check whether the scenario needs static NAT, dynamic NAT or PAT.
  • Do not confuse NAT matching ACLs with normal packet-filtering intent.

Related practice questions

Related AZ-305 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

More questions from this exam

Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.

FAQ

Questions learners often ask

What does this AZ-305 question test?

Static NAT maps one inside address to one outside address.

What is the correct answer to this question?

The correct answer is: SQL Server Always On Availability Group with synchronous commit across regions. — To achieve zero RPO across regions, you must use synchronous data replication. SQL Server Always On Availability Groups with synchronous commit can guarantee zero data loss if the secondary replica is in a different region. However, synchronous commit over long distances may impact performance due to network latency. Alternatives like Azure Site Recovery or asynchronous availability groups would have some data loss. Zone-redundant storage provides high availability within a region, not cross-region DR.

What should I do if I get this AZ-305 question wrong?

Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.

Discussion

Loading comments…

Sign in to join the discussion.