- A
Deploy the application across multiple Availability Zones within the same Region.
Why wrong: Multiple Availability Zones provide high availability and fault tolerance within a single Region by distributing instances across isolated data centers. However, they do not protect against a disaster that takes down the entire Region, which is a geographic area consisting of multiple AZs.
- B
Deploy the application across multiple Edge Locations of Amazon CloudFront.
Why wrong: Edge Locations are part of the CloudFront content delivery network and are used to cache content closer to users. They do not run compute resources like EC2 instances and are not designed for hosting applications or providing disaster recovery.
- C
Deploy the application across multiple AWS Regions.
Deploying across multiple AWS Regions is the correct approach for geographic disaster recovery. Each Region is completely independent, with separate power, cooling, and physical infrastructure. If one Region is affected by a disaster, the application can fail over to another Region, ensuring business continuity.
- D
Deploy the application on a larger instance type within the same Availability Zone.
Why wrong: Using a larger instance type provides more compute capacity but does not introduce any redundancy. All instances remain in the same single Availability Zone, which is a single point of failure. This approach does not protect against even a local data center failure, let alone a regional disaster.
CLF-C02 Cloud Concepts Practice Question
This CLF-C02 practice question tests your understanding of cloud concepts. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. 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 an e-commerce platform on Amazon EC2 instances in a single AWS Region. The company wants to ensure that the platform remains available even if a natural disaster disrupts the entire geographic area of that Region. Which approach should the company take to meet this requirement?
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
Deploy the application across multiple AWS Regions.
Option C is correct because deploying the application across multiple AWS Regions ensures fault tolerance and disaster recovery even if an entire geographic area is disrupted. A natural disaster affecting a single Region would impact all Availability Zones within that Region, so multi-Region deployment is the only approach that provides geographic isolation and continuous availability.
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 the application across multiple Availability Zones within the same Region.
Why it's wrong here
Multiple Availability Zones provide high availability and fault tolerance within a single Region by distributing instances across isolated data centers. However, they do not protect against a disaster that takes down the entire Region, which is a geographic area consisting of multiple AZs.
When this WOULD be correct
If the requirement were to ensure high availability against a single-AZ failure (e.g., an AZ-specific power outage) while minimizing latency and cost, deploying across multiple AZs within the same Region would be the correct approach.
- ✗
Deploy the application across multiple Edge Locations of Amazon CloudFront.
Why it's wrong here
Edge Locations are part of the CloudFront content delivery network and are used to cache content closer to users. They do not run compute resources like EC2 instances and are not designed for hosting applications or providing disaster recovery.
When this WOULD be correct
A company wants to reduce latency for global users by caching static content closer to them, and requires high availability for that cached content even if a regional CloudFront origin fails.
- ✓
Deploy the application across multiple AWS Regions.
Why this is correct
Deploying across multiple AWS Regions is the correct approach for geographic disaster recovery. Each Region is completely independent, with separate power, cooling, and physical infrastructure. If one Region is affected by a disaster, the application can fail over to another Region, ensuring business continuity.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Deploy the application on a larger instance type within the same Availability Zone.
Why it's wrong here
Using a larger instance type provides more compute capacity but does not introduce any redundancy. All instances remain in the same single Availability Zone, which is a single point of failure. This approach does not protect against even a local data center failure, let alone a regional disaster.
When this WOULD be correct
This option would be correct if the requirement was to improve performance or handle increased load for a single-instance application without changing architecture, such as scaling vertically to meet higher demand.
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.
✓Deploy the application across multiple AWS Regions.Correct answer▾
Why this is correct
Deploying across multiple AWS Regions is the correct approach for geographic disaster recovery. Each Region is completely independent, with separate power, cooling, and physical infrastructure. If one Region is affected by a disaster, the application can fail over to another Region, ensuring business continuity.
✗Deploy the application across multiple Availability Zones within the same Region.Wrong answer — click to see why▾
Why this is wrong here
Deploying across multiple Availability Zones protects against failures within a single AZ, but not against a natural disaster that disrupts the entire geographic area of a Region, as all AZs in a Region are within the same geographic area.
★ When this WOULD be the correct answer
If the requirement were to ensure high availability against a single-AZ failure (e.g., an AZ-specific power outage) while minimizing latency and cost, deploying across multiple AZs within the same Region would be the correct approach.
Why candidates choose this
Candidates often confuse high availability within a Region (using multiple AZs) with disaster recovery across Regions, and may think that AZs are geographically dispersed enough to withstand region-wide disasters.
✗Deploy the application across multiple Edge Locations of Amazon CloudFront.Wrong answer — click to see why▾
Why this is wrong here
Edge Locations are used for content caching and acceleration via CloudFront, not for running application instances. They cannot provide compute capacity to replace EC2 instances in a disaster scenario.
★ When this WOULD be the correct answer
A company wants to reduce latency for global users by caching static content closer to them, and requires high availability for that cached content even if a regional CloudFront origin fails.
Why candidates choose this
Candidates may confuse Edge Locations with AWS Regions or Availability Zones, thinking they provide compute redundancy, or overestimate CloudFront's capabilities for disaster recovery.
✗Deploy the application on a larger instance type within the same Availability Zone.Wrong answer — click to see why▾
Why this is wrong here
Deploying on a larger instance type within the same Availability Zone does not protect against a natural disaster that disrupts the entire geographic area of the Region, as the single Availability Zone is still within that Region.
★ When this WOULD be the correct answer
This option would be correct if the requirement was to improve performance or handle increased load for a single-instance application without changing architecture, such as scaling vertically to meet higher demand.
Why candidates choose this
Candidates may think that a larger instance provides more reliability or redundancy, confusing vertical scaling with high availability.
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 high availability within a Region (using multiple AZs) with disaster recovery across Regions, mistakenly thinking that AZ-level redundancy is sufficient to withstand a full Regional outage.
Detailed technical explanation
How to think about this question
AWS Regions are physically isolated from each other, with independent power, cooling, and network connectivity, typically separated by hundreds of kilometers. For active-active multi-Region architectures, services like Amazon Route 53 with latency-based or geolocation routing, along with cross-Region replication for databases (e.g., Amazon RDS cross-Region read replicas or DynamoDB global tables), are used to synchronize data and route traffic. Under the hood, AWS uses a control plane that operates independently per Region, so a Regional outage does not affect the control plane of another Region, ensuring that failover can be automated via health checks and DNS updates.
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.
- →
Cloud Concepts — study guide chapter
Learn the concepts, then practise the questions
- →
Cloud Concepts practice questions
Targeted practice on this topic area only
- →
All CLF-C02 questions
1,024 questions across all exam domains
- →
AWS Certified Cloud Practitioner CLF-C02 study guide
Full concept coverage aligned to exam objectives
- →
CLF-C02 practice test guide
How to use practice tests most effectively before exam day
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.
Cloud Concepts practice questions
Practise CLF-C02 questions linked to Cloud Concepts.
Security and Compliance practice questions
Practise CLF-C02 questions linked to Security and Compliance.
Cloud Technology and Services practice questions
Practise CLF-C02 questions linked to Cloud Technology and Services.
Billing, Pricing, and Support practice questions
Practise CLF-C02 questions linked to Billing, Pricing, and Support.
AWS shared responsibility model practice questions
Practise CLF-C02 questions linked to AWS shared responsibility model.
AWS IAM practice questions
Practise CLF-C02 questions linked to AWS IAM.
AWS pricing practice questions
Practise CLF-C02 questions linked to AWS pricing.
AWS support plans practice questions
Practise CLF-C02 questions linked to AWS support plans.
AWS S3 practice questions
Practise CLF-C02 questions linked to AWS S3.
AWS EC2 practice questions
Practise CLF-C02 questions linked to AWS EC2.
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 Concepts — This question tests Cloud Concepts — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Deploy the application across multiple AWS Regions. — Option C is correct because deploying the application across multiple AWS Regions ensures fault tolerance and disaster recovery even if an entire geographic area is disrupted. A natural disaster affecting a single Region would impact all Availability Zones within that Region, so multi-Region deployment is the only approach that provides geographic isolation and continuous availability.
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 →
Keep practising
More CLF-C02 practice questions
- A company publishes a message each time a new product is added to its catalogue. Three services need to receive this mes…
- A media company stores frequently accessed video thumbnails in Amazon S3. The thumbnails are read multiple times every d…
- A company needs a service to translate domain names (like www.example.com) into IP addresses, check the health of their…
- A startup runs an application on AWS and receives a monthly bill that charges exactly for the number of compute hours us…
- A financial institution runs its core banking application on-premises due to regulatory requirements. It has connected i…
- A company wants to run a MySQL database in AWS without managing database software installation, applying patches, settin…
Last reviewed: Jun 11, 2026
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.
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.
Sign in to join the discussion.