AWS Cloud Practitioner CLF-C02 Sign in Try 10 free questions

Free CLF-C02 practice questions: Amazon RDS

Managed databases hinge on one exam fork: Multi-AZ for availability, read replicas for scale. Six questions with the reasoning attached, 2026 edition.

Here are 6 typical Amazon RDS questions in the exam's own style — free, with the answer explained, no sign-up.

Straight to the 6 free questions ↓

Amazon RDS is the exam’s stand-in for “a relational database, but managed.” Almost every RDS question is really one of two checks: do you know what “managed” takes off your plate, and can you tell Multi-AZ apart from read replicas. Get those two right and this service is quick marks.

Managed means AWS does the operations

RDS runs relational databases — PostgreSQL, MySQL, MariaDB, Oracle, SQL Server — and takes over the operational work: provisioning, patching the operating system and the database engine, backups, and replication. Your job shrinks to your data, who may access it, and the configuration you choose. On the shared responsibility model this pushes the line well up: unlike a database you install on an EC2 instance, you do not patch the OS or the engine. The contrast the exam likes is exactly that — RDS versus “run the database yourself on EC2.” If a scenario wants to avoid database maintenance, RDS is the answer.

The fork that carries the topic: Multi-AZ vs read replicas

These two features sound similar and do opposite jobs. The exam confuses them on purpose:

  • Multi-AZ keeps a synchronous standby in a second Availability Zone and fails over automatically if the primary has a problem. It is about availability. It does not serve read traffic.
  • Read replicas are additional copies that serve read queries, taking read load off the primary. They are about performance and scale. They are not a failover mechanism.

Availability, or read scale. Whenever a question describes a read-heavy workload slowing down, the answer is read replicas; whenever it describes surviving the loss of an Availability Zone, the answer is Multi-AZ.

RDS is relational — know its neighbours

RDS is for relational databases. Its most common distractor is DynamoDB, which is AWS’s NoSQL service — a different data model, not an RDS engine. Two more names get offered as “databases” and are not: ElastiCache is an in-memory cache, and S3 is object storage. If a question asks for a relational database with managed operations, none of those fit — RDS does.

How to use the questions below

Answer each one first, then read the explanation past the correct letter to the part that explains why the other three fail. RDS distractors are almost always a real AWS data service placed in the wrong role — DynamoDB where relational belongs, a read replica where a standby belongs. The reasoning below is built to make those distinctions automatic before you sit the exam.

Amazon RDS as a managed relational database: AWS handles provisioning, patching and backups. Two capabilities sit side by side — Multi-AZ keeps a synchronous standby in a second Availability Zone for automatic failover and availability, while read replicas add copies that serve read traffic to scale performance.

6 free CLF-C02 practice questions

Answers and explanations — no email wall
CLF-C02 Question 1 of 6

What is Amazon RDS?

Answer: A — A managed relational database service that handles provisioning, patching and backups

Amazon RDS runs relational databases for you and takes over the operational chores — setup, patching, backups, replication. Why not the others: the managed NoSQL key-value service is DynamoDB. Object storage is S3. And running your own database software on a server you manage is EC2 — the opposite of the managed model RDS provides.

CLF-C02 Question 2 of 6

What does a Multi-AZ deployment give an Amazon RDS database?

Answer: A — A standby copy in another Availability Zone with automatic failover, for high availability

Multi-AZ keeps a synchronous standby in a second Availability Zone and fails over to it automatically if the primary has a problem — it is about availability. Why not the others: serving read traffic from extra copies is what read replicas do, and confusing the two is the exact mistake the exam is probing. Multi-AZ adds a standby, so it does not lower cost, and it is unrelated to storage limits.

CLF-C02 Question 3 of 6

A database's read traffic has grown and is slowing the primary instance. Which RDS feature is designed to relieve this?

Answer: A — Read replicas

Read replicas are additional copies that serve read queries, spreading read load off the primary — the right tool for a read-heavy workload. Why not the others: the Multi-AZ standby exists for failover, not to serve reads. Backup retention governs how long backups are kept. Encryption protects data but does nothing for performance. Read replicas scale reads; Multi-AZ protects availability — keep those separate.

CLF-C02 Question 4 of 6

Under the shared responsibility model, who patches the database engine on Amazon RDS?

Answer: A — AWS, because RDS is a managed service

With RDS, AWS manages the underlying operating system and the database engine, including patching — you look after your data, access and configuration. Why not the others: unlike a database you install on EC2, you do not patch the OS or the engine yourself. Managed does not mean 'never patched'; it means AWS does it. This is the shared-responsibility line moving upward for a more managed service.

CLF-C02 Question 5 of 6

Which of the following is a relational database engine you can run on Amazon RDS?

Answer: A — PostgreSQL

RDS supports several relational engines, including PostgreSQL, MySQL, MariaDB, Oracle and SQL Server. Why not the others: DynamoDB is AWS's NoSQL service, not an RDS engine. S3 is object storage. ElastiCache is an in-memory cache. Only PostgreSQL here is a relational engine RDS actually runs.

CLF-C02 Question 6 of 6

A team wants a relational database but does not want to handle backups, patching or setting up replication themselves. Which option fits best?

Answer: A — Amazon RDS

RDS is precisely the 'I want a relational database without the operational work' answer — AWS handles the maintenance. Why not the others: running the database yourself on EC2 puts all that work back on you. S3 stores files, not a queryable relational database. DynamoDB is relational's alternative, a NoSQL model, not what a team asking for a relational database wants.

That is exactly how every question in the course works — answer, explanation, why-not. The real set continues in the practice player: 10 free questions, no sign-up.

Continue with the 10 free questions →

Those 6 questions were the start.

The exam does not test whether you recognise a term — it tests whether you can rule out three plausible answers under time pressure. That is what the explanations above are for, and there are 390 more questions built exactly like them.

Collecting questions yourself

  • Scattered across forums, of unknown age
  • Answer keys without reasoning
  • No idea which domain you are weak in

Practising with a system

  • 390 questions in 6 full tests, CLF-C02 (2026)
  • Every option explained — including the wrong ones
  • Readiness per exam domain, and drills for your weakest
Start free — 10 questions

Straight into the player. No account, no email.

Frequently asked questions

Is this the current CLF-C02 format?
Yes — these questions follow the CLF-C02 exam guide (2026 edition). Amazon RDS sits in the Cloud Technology and Services domain, the largest on the exam at 34%, and the managed-versus-self-managed and Multi-AZ-versus-read-replica distinctions are steady sources of marks.
Are these real exam questions?
No. They are our own questions, written in the style and difficulty of the exam. Reproducing real exam items violates the AWS certification agreement and can get your certification revoked, and a memorised item teaches you nothing about the one you have not seen.
Do I need to know SQL for this exam?
No. CLF-C02 tests what RDS is, what it manages for you, and the purpose of Multi-AZ and read replicas. You will not write queries or tune a database — you will pick the right managed option for a described need.
What is the single most tested RDS distinction?
Multi-AZ versus read replicas. Multi-AZ is a standby in another Availability Zone for automatic failover — availability. Read replicas are extra copies that serve reads — performance. If you can say which is which in one sentence, you have the RDS marks the exam cares about.

Updated for CLF-C02 (July 2026). The sample questions above are our own work in the style of the exam — not real exam items. The exam itself is set and marked by the certification body.