Question 668 of 1,024
Cloud Technology and ServicesmediumMultiple ChoiceObjective-mapped

CLF-C02 Cloud Technology and Services Practice Question

This CLF-C02 practice question tests your understanding of cloud technology and services. 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 company runs a critical e-commerce application that uses an Amazon RDS for MySQL database deployed in a single Availability Zone. The company needs to ensure that the database remains available if the underlying hardware or the entire Availability Zone fails. The solution must provide automatic failover with minimal downtime and must not require any changes to the application's database connection string. Which Amazon RDS feature should the company use to meet these requirements?

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

Configure a Multi-AZ deployment for the Amazon RDS database instance

Option D is correct because a Multi-AZ deployment for Amazon RDS automatically provisions and maintains a synchronous standby replica in a different Availability Zone. In the event of a failure, Amazon RDS automatically fails over to the standby, and the DNS record for the database endpoint is updated to point to the standby, so the application's connection string remains unchanged. This provides automatic failover with minimal downtime without requiring any manual intervention or application changes.

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.

  • Deploy a Read Replica in another Availability Zone and configure the application to use it as a failover target

    Why it's wrong here

    Read Replicas are designed for scaling read traffic and do not provide automatic failover. Promoting a Read Replica to become a primary instance requires manual intervention, which does not meet the requirement for automatic failover and minimal downtime.

    When this WOULD be correct

    If the requirement was to offload read traffic from the primary database and have a standby for read-only queries during failover, and the application could handle connection string changes, then a Read Replica would be correct.

  • Enable automated backups with point-in-time recovery

    Why it's wrong here

    Automated backups and point-in-time recovery allow you to restore your database to a specific point in time, but the restore process is not automatic and can take significant time. This does not provide the active high availability or automatic failover required.

    When this WOULD be correct

    A company needs to recover the database to a specific point in time after a logical corruption or accidental data deletion, and can tolerate some downtime for restoration. The question would ask for a feature that enables recovery to any second within the retention period, not for high availability.

  • Manually provision a standby database instance in another Availability Zone and configure a custom failover script

    Why it's wrong here

    While this approach could theoretically provide failover, it requires significant manual effort to manage synchronization, monitor health, and trigger failover. Amazon RDS Multi-AZ automates all these steps, including updating the DNS endpoint, so the application connection string remains unchanged. A manual solution does not meet the requirement for minimal downtime and simplicity.

    When this WOULD be correct

    This option would be correct if the question specified that the application can tolerate some downtime and can be modified to switch connection strings, or if the company needs full control over the failover process and is willing to manage custom scripts, such as in a hybrid or on-premises environment where Multi-AZ is not available.

  • Configure a Multi-AZ deployment for the Amazon RDS database instance

    Why this is correct

    Multi-AZ deployments create a synchronous standby replica in a different Availability Zone. Amazon RDS automatically handles failover to the standby replica when a failure is detected, and updates the DNS record so that the same connection endpoint continues to work without any application changes. This meets all the stated requirements.

    Related concept

    Read the scenario before looking for a memorised answer.

Option-by-option analysis

Why each answer is right or wrong

Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The CLF-C02 exam frequently reuses these exact scenarios with slightly different constraints.

Configure a Multi-AZ deployment for the Amazon RDS database instanceCorrect answer

Why this is correct

Multi-AZ deployments create a synchronous standby replica in a different Availability Zone. Amazon RDS automatically handles failover to the standby replica when a failure is detected, and updates the DNS record so that the same connection endpoint continues to work without any application changes. This meets all the stated requirements.

Deploy a Read Replica in another Availability Zone and configure the application to use it as a failover targetWrong answer — click to see why

Why this is wrong here

Read Replicas do not provide automatic failover; the application must manually switch the connection string to the replica, which violates the requirement of no changes to the connection string and minimal downtime.

★ When this WOULD be the correct answer

If the requirement was to offload read traffic from the primary database and have a standby for read-only queries during failover, and the application could handle connection string changes, then a Read Replica would be correct.

Why candidates choose this

Candidates may think a Read Replica in another AZ provides high availability similar to Multi-AZ, but they overlook that failover is not automatic and requires application changes.

Enable automated backups with point-in-time recoveryWrong answer — click to see why

Why this is wrong here

Automated backups with point-in-time recovery protect against data loss and allow restoration to a specific time, but they do not provide automatic failover or high availability. Restoring from a backup requires manual intervention and downtime, which does not meet the requirement for minimal downtime and automatic failover.

★ When this WOULD be the correct answer

A company needs to recover the database to a specific point in time after a logical corruption or accidental data deletion, and can tolerate some downtime for restoration. The question would ask for a feature that enables recovery to any second within the retention period, not for high availability.

Why candidates choose this

Candidates may confuse backup and recovery with high availability, assuming that automated backups can be used to quickly restore the database in a failover scenario, not realizing that restoration is a manual process with significant downtime.

Manually provision a standby database instance in another Availability Zone and configure a custom failover scriptWrong answer — click to see why

Why this is wrong here

Manually provisioning a standby instance and configuring a custom failover script would require changes to the application's database connection string, violating the requirement for no changes. It also introduces operational complexity and does not provide automatic failover with minimal downtime as Multi-AZ does.

★ When this WOULD be the correct answer

This option would be correct if the question specified that the application can tolerate some downtime and can be modified to switch connection strings, or if the company needs full control over the failover process and is willing to manage custom scripts, such as in a hybrid or on-premises environment where Multi-AZ is not available.

Why candidates choose this

Candidates may think that a manual standby with a failover script is a viable high-availability solution, overlooking the automatic failover and connection string requirements. They might also underestimate the complexity and downtime involved in custom failover implementations.

Analysis generated from the official CLF-C02blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse Read Replicas (which are for read scaling and require manual promotion) with Multi-AZ deployments (which provide automatic failover with no application changes), leading them to incorrectly select Option A.

Detailed technical explanation

How to think about this question

In a Multi-AZ deployment, Amazon RDS synchronously replicates data to the standby instance using the MySQL replication protocol, ensuring zero data loss during failover. The failover process typically completes within 60–120 seconds, during which the DNS record is automatically updated to point to the standby, so the application only experiences a brief connection interruption. This feature is transparent to the application and does not require any changes to the database connection string, making it ideal for critical e-commerce applications that demand high availability.

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.

Visual reference

Client Recursive Resolver Root DNS (13 root servers) TLD DNS (.com, .org, …) Authoritative example.com query IP addr answer

Quick reference

Common DNS Record Types

RecordPurposeExample
AIPv4 address mappingexample.com → 93.184.216.34
AAAAIPv6 address mappingexample.com → 2606:2800::1
CNAMEAlias to another hostnamewww → example.com
MXMail server for domainexample.com → mail.example.com (priority 10)
TXTText data (SPF, DKIM, verification)v=spf1 include:_spf.example.com ~all
NSAuthoritative name serversexample.com NS ns1.example.com
PTRReverse DNS (IP → hostname)34.216.184.93.in-addr.arpa → example.com
SOAZone authority recordPrimary NS, admin email, serial, TTL defaults

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 CLF-C02 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 CLF-C02 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 CLF-C02 question test?

Cloud Technology and Services — This question tests Cloud Technology and Services — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Configure a Multi-AZ deployment for the Amazon RDS database instance — Option D is correct because a Multi-AZ deployment for Amazon RDS automatically provisions and maintains a synchronous standby replica in a different Availability Zone. In the event of a failure, Amazon RDS automatically fails over to the standby, and the DNS record for the database endpoint is updated to point to the standby, so the application's connection string remains unchanged. This provides automatic failover with minimal downtime without requiring any manual intervention or application changes.

What should I do if I get this CLF-C02 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 CLF-C02 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 CLF-C02 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 CLF-C02 exam.