Question 195 of 1,040
Design Secure ArchitecturesmediumMultiple SelectObjective-mapped

Quick Answer

The answer is that existing database connections are interrupted and the application should retry by reconnecting to the same database endpoint. This is correct because in an RDS Multi-AZ deployment, Amazon RDS maintains a synchronous standby replica in a different Availability Zone; during a failover, the standby is promoted to primary, which terminates all existing connections to the old primary, but the DNS endpoint remains unchanged. On the SAA-C03 exam, this tests your understanding of RDS Multi-AZ failover behavior and the critical distinction that while the endpoint stays the same, the application must handle connection drops gracefully with retry logic—a common trap is assuming connections persist or that the endpoint changes. Remember the memory tip: "Same endpoint, new primary, reconnect required."

SAA-C03 Design Secure Architectures Practice Question

This SAA-C03 practice question tests your understanding of design secure architectures. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A web application uses Amazon RDS for MySQL in a Multi-AZ deployment. During a planned maintenance event, the team wants to understand which two statements about failover are accurate so they can design connection handling correctly. Which two statements are accurate? Select two.

Question 1mediummulti select
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

RDS automatically promotes the synchronous standby in the same Region if the primary instance becomes unavailable.

Option A is correct because in a Multi-AZ RDS for MySQL deployment, Amazon RDS automatically maintains a synchronous standby replica in a different Availability Zone. If the primary instance becomes unavailable due to a planned maintenance event or failure, RDS automatically fails over to the standby, promoting it to become the new primary. This failover is transparent to the application when using the same DNS endpoint, as RDS updates the DNS record to point to the new primary.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • RDS automatically promotes the synchronous standby in the same Region if the primary instance becomes unavailable.

    Why this is correct

    This is the core Multi-AZ availability behavior. AWS manages the standby and promotes it automatically during failure or maintenance events, keeping the database available within the Region with minimal administrative effort.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The standby instance can serve production read traffic to improve read scaling in standard RDS Multi-AZ.

    Why it's wrong here

    In standard RDS Multi-AZ, the standby exists for high availability and failover, not for serving application reads. Read scaling requires a different pattern, such as read replicas or Aurora reader endpoints.

  • The application must permanently change its connection string to a new host after failover completes.

    Why it's wrong here

    RDS uses the same database endpoint for the Multi-AZ deployment, so applications do not need to hardcode a new host after failover. The endpoint name stays stable, which reduces recovery complexity.

  • Existing database connections are interrupted and the application should retry by reconnecting to the same database endpoint.

    Why this is correct

    During failover, active sessions are dropped because the database role changes. A resilient application must handle transient errors and reconnect to the same endpoint so DNS can resolve to the new primary.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Multi-AZ provides protection against a full Region outage without any additional design changes.

    Why it's wrong here

    Multi-AZ improves availability within a single Region, but it is not a regional disaster recovery solution. A full Region outage requires a multi-Region strategy such as pilot light, warm standby, or active-active.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse the passive standby in standard Multi-AZ with a readable replica, or assume that Multi-AZ provides cross-Region disaster recovery, when in fact it only protects against AZ-level failures within a single Region.

Detailed technical explanation

How to think about this question

Under the hood, RDS Multi-AZ uses synchronous replication from the primary to the standby in a different AZ, ensuring zero data loss (committed transactions are written to both instances). During a failover, RDS flips the DNS CNAME record to point to the standby, which typically takes 60–120 seconds. The application must implement retry logic with exponential backoff to handle the brief interruption, reconnecting to the same endpoint after the DNS change propagates. Note that for MySQL, the standby is a fully provisioned instance but is not accessible for reads unless you explicitly configure a Multi-AZ cluster deployment (which is different from standard Multi-AZ).

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related SAA-C03 practice-question pages

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

Practice this exam

Start a free SAA-C03 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SAA-C03 question test?

Design Secure Architectures — This question tests Design Secure Architectures — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: RDS automatically promotes the synchronous standby in the same Region if the primary instance becomes unavailable. — Option A is correct because in a Multi-AZ RDS for MySQL deployment, Amazon RDS automatically maintains a synchronous standby replica in a different Availability Zone. If the primary instance becomes unavailable due to a planned maintenance event or failure, RDS automatically fails over to the standby, promoting it to become the new primary. This failover is transparent to the application when using the same DNS endpoint, as RDS updates the DNS record to point to the new primary.

What should I do if I get this SAA-C03 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More SAA-C03 practice questions

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This SAA-C03 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SAA-C03 exam.