AWS CLF-C02: Cloud Concepts

Try 10 focused AWS CLF-C02 questions on Cloud Concepts, with explanations, then continue with IT Mastery.

On this page

Open the matching IT Mastery practice page for timed mocks, topic drills, progress tracking, explanations, and full practice.

Try AWS CLF-C02 on Web View full AWS CLF-C02 practice page

Topic snapshot

FieldDetail
Exam routeAWS CLF-C02
Topic areaCloud Concepts
Blueprint weight24%
Page purposeFocused sample questions before returning to mixed practice

How to use this topic drill

Use this page to isolate Cloud Concepts for AWS CLF-C02. Work through the 10 questions first, then review the explanations and return to mixed practice in IT Mastery.

PassWhat to doWhat to record
First attemptAnswer without checking the explanation first.The fact, rule, calculation, or judgment point that controlled your answer.
ReviewRead the explanation even when you were correct.Why the best answer is stronger than the closest distractor.
RepairRepeat only missed or uncertain items after a short break.The pattern behind misses, not the answer letter.
TransferReturn to mixed practice once the topic feels stable.Whether the same skill holds up when the topic is no longer obvious.

Blueprint context: 24% of the practice outline. A focused topic score can overstate readiness if you recognize the pattern too quickly, so use it as repair work before timed mixed sets.

Sample questions

These questions are original IT Mastery practice items aligned to this topic area. They are designed for self-assessment and are not official exam questions.

Question 1

Topic: Cloud Concepts

A company is training new cloud engineers on the AWS Well-Architected Framework. The instructor lists several design focus areas and asks which ones are official pillars. Which of the following is NOT one of the six pillars of the AWS Well-Architected Framework?

Options:

  • A. Sustainability

  • B. High availability

  • C. Operational excellence

  • D. Cost optimization

Best answer: B

Explanation: The AWS Well-Architected Framework is organized into six named pillars: operational excellence, security, reliability, performance efficiency, cost optimization, and sustainability. These are broad categories that describe best-practice goals for designing and operating workloads in the AWS Cloud.

High availability is a key design objective that fits mainly under the reliability and performance efficiency pillars, but it is not itself one of the six official pillar names. Recognizing the exact pillar names helps you align design decisions with AWS best-practice guidance at a high level.


Question 2

Topic: Cloud Concepts

An online learning platform runs entirely in a single AWS Region in the US. It is expanding to students in Europe and Asia, who report slow page-load times. Which approach best uses AWS global infrastructure to reduce latency for these new students?

Options:

  • A. Deploy additional copies of the application in AWS Regions close to Europe and Asia and route users to their nearest Region.

  • B. Purchase an AWS Direct Connect link from the company headquarters to the existing US Region to improve connectivity.

  • C. Move all static content to Amazon S3 in the existing US Region instead of hosting it on the web servers.

  • D. Upgrade to larger Amazon EC2 instances in the existing US Region so the application can process requests faster.

Best answer: A

Explanation: AWS provides multiple Regions around the world so you can run your applications closer to where your customers are. By deploying the application in Regions near Europe and Asia and routing users to the nearest Region, the platform shortens network paths and reduces latency. This directly leverages the global AWS infrastructure to give end users in different geographic locations faster, more responsive access to the application.


Question 3

Topic: Cloud Concepts

A company is migrating a critical internal application from a single on-premises data center to AWS. The application will be deployed across multiple Availability Zones within one Region with automatic failover if one Availability Zone becomes unavailable. Which AWS Well-Architected pillar does this change primarily support?

Options:

  • A. Performance Efficiency

  • B. Reliability

  • C. Security

  • D. Cost Optimization

Best answer: B

Explanation: The described migration reduces the risk of downtime by moving from a single on-premises data center (a single point of failure) to a design that uses multiple Availability Zones in an AWS Region. This design allows the application to continue running if one Availability Zone fails, directly improving availability and fault tolerance. These characteristics are central to the AWS Well-Architected Reliability pillar, which is focused on ensuring a workload performs its intended function correctly and consistently over its lifecycle. By using multi-AZ deployment and automatic failover, the company improves operational resilience and reduces business risk from infrastructure outages.


Question 4

Topic: Cloud Concepts

An online retailer runs a web application that usually has low traffic but experiences sudden, unpredictable spikes during flash sales. The company wants to meet demand during spikes while avoiding paying for unused capacity during quiet periods, with minimal manual effort. Which approach best uses the elasticity of the AWS Cloud to meet this goal?

Options:

  • A. Run a fixed fleet of Amazon EC2 instances sized for the highest possible traffic level at all times.

  • B. Purchase long-term Reserved Instances for enough Amazon EC2 capacity to handle peak load and run this capacity continuously.

  • C. Manually launch additional Amazon EC2 instances before each flash sale and stop them afterward.

  • D. Run the application on Amazon EC2 instances in an Auto Scaling group that automatically adds or removes instances based on traffic.

Best answer: D

Explanation: Elasticity in the AWS Cloud means the ability to automatically increase and decrease resources to match current demand. For an application with mostly low traffic and occasional unpredictable spikes, the most cost-effective approach is to scale out when needed and scale back in afterward without manual effort.

Using an Auto Scaling group for Amazon EC2 lets AWS add instances during flash sales and remove them when traffic returns to normal. This way, the retailer pays for extra capacity only during busy periods and avoids overprovisioning at other times.


Question 5

Topic: Cloud Concepts

Which of the following statements about AWS pricing and usage patterns is NOT correct?

Options:

  • A. Steady, predictable compute workloads can often reduce costs by using Savings Plans or Reserved Instances instead of On-Demand pricing.

  • B. Pay-as-you-go pricing helps avoid large upfront costs compared to buying hardware for your own data center.

  • C. Spiky or unpredictable workloads are usually best suited for On-Demand pricing because capacity usage changes frequently.

  • D. Short-term, non-production experiments are generally cheapest when you purchase long-term commitments such as multi-year Savings Plans.

Best answer: D

Explanation: The incorrect statement is the one suggesting that short-term, non-production experiments are generally cheapest with multi-year commitments. AWS commitment-based pricing options like Savings Plans and Reserved Instances are designed for steady, predictable usage, where you expect to use a certain amount of resources over a long period.

For short-lived or unpredictable workloads, On-Demand pricing is typically more cost-effective because you only pay for what you use without locking in long-term commitments. Pay-as-you-go pricing and the ability to choose different purchasing models allow organizations to match costs to their usage patterns and business needs.


Question 6

Topic: Cloud Concepts

A company runs several on-premises production databases. Some will move to the same engine on Amazon RDS, and others will be converted to a different engine. Leadership requires minimal downtime during migration. Which of the following actions/solutions will meet these requirements? (Select TWO.)

Options:

  • A. Stop each application, take a full backup, restore it to Amazon RDS, and restart the application after all restores complete.

  • B. Export database tables to CSV files and use manual import tools to load them into Amazon RDS during a scheduled maintenance window.

  • C. Ship physical backup tapes to AWS and request that AWS staff restore the databases into Amazon RDS.

  • D. Configure native database replication from the on-premises database to the same engine on Amazon RDS, then cut over after data is synchronized.

  • E. Use AWS Database Migration Service (AWS DMS) with ongoing replication to migrate databases that are changing to a different engine.

Correct answers: D and E

Explanation: For minimal downtime, you need continuous or near-continuous replication so that the target database stays closely synchronized with the source until a short cutover. AWS Database Migration Service (AWS DMS) is designed for this, especially when changing database engines, and native database replication works well when the engine stays the same. Backup/restore or manual export/import methods are valid for non-urgent moves but usually require longer application outages and do not provide ongoing replication.


Question 7

Topic: Cloud Concepts

A startup runs a stable web application on Amazon EC2 with predictable, 24/7 traffic and wants to reduce monthly costs while following AWS cost optimization best practices. Which of the following approaches should the company AVOID? (Select TWO.)

Options:

  • A. Use Auto Scaling groups so that the number of EC2 instances increases during busy periods and decreases during low-traffic periods.

  • B. Keep non-production EC2 instances running at all times, even when not in use, to ensure they are immediately available.

  • C. Purchase a 1-year Compute Savings Plan that covers the application’s typical baseline EC2 usage.

  • D. Rightsize EC2 instances by monitoring CPU and memory usage, then selecting smaller instance types when utilization is consistently low.

  • E. Run all predictable, steady-state production workloads only on On-Demand EC2 Instances, without using any long-term pricing options.

Correct answers: B and E

Explanation: Cost optimization on AWS focuses on paying only for what you need, using the most appropriate pricing models, and matching capacity to actual demand. For predictable, steady-state workloads, AWS recommends using Reserved Instances or Savings Plans instead of relying only on On-Demand pricing. It is also important to turn off or scale down resources when they are not needed, especially in non-production environments. Tools like Auto Scaling and rightsizing help align resource usage with real demand, reducing unnecessary spend.


Question 8

Topic: Cloud Concepts

Which of the following design considerations is primarily associated with the security pillar of the AWS Well-Architected Framework?

Options:

  • A. Using auto scaling to match compute capacity to changes in demand

  • B. Deploying workloads across multiple Availability Zones to withstand infrastructure failures

  • C. Designing stateless applications that can be restarted on new instances without data loss

  • D. Implementing least-privilege access controls for users and applications

Best answer: D

Explanation: The security pillar of the AWS Well-Architected Framework focuses on protecting data, systems, and assets using mechanisms such as identity and access management, encryption, and monitoring. Implementing least-privilege access controls is a core security best practice that minimizes the impact of compromised credentials or user mistakes.

The reliability pillar focuses on a workload’s ability to perform its intended function correctly and consistently, including withstanding and recovering from failures. Techniques such as using multiple Availability Zones and designing stateless applications primarily support reliability, not security.


Question 9

Topic: Cloud Concepts

Which design principle most directly improves the high availability of an application running on AWS?

Options:

  • A. Run the application on the largest possible instance type in a single Availability Zone

  • B. Store application logs in Amazon S3 for long-term retention

  • C. Use Spot Instances for all application components to reduce costs

  • D. Deploy the application across multiple Availability Zones within a Region

Best answer: D

Explanation: High availability in AWS is achieved by designing systems that can continue operating even when part of the infrastructure fails. A core AWS design principle for this is to use multiple Availability Zones, which are physically separate data centers within a Region. By deploying resources across multiple AZs, your application can fail over to healthy components if one AZ becomes unavailable.

Other practices like choosing larger instances, using Spot pricing, or retaining logs may help with performance, cost, or observability, but they do not directly address the risk of an Availability Zone failure in the same way that multi-AZ redundancy does.


Question 10

Topic: Cloud Concepts

A company is reviewing its AWS usage to reduce monthly spending while still supporting future growth. Which of the following practices should the company AVOID to follow good cloud economics principles? (Select TWO.)

Options:

  • A. Regularly review Amazon CloudWatch metrics and adjust EC2 instance sizes based on typical utilization.

  • B. Purchase Compute Savings Plans for workloads with steady, predictable usage patterns.

  • C. Standardize on instance sizes that are much larger than required so that performance is never a concern.

  • D. Keep development and test environments running at full size 24/7, even when no one is using them.

  • E. Use AWS Auto Scaling groups to add or remove EC2 instances automatically as demand changes.

Correct answers: C and D

Explanation: Cloud economics on AWS focuses on paying only for what you actually need, taking advantage of variable costs, rightsizing, automation, and economies of scale. Practices such as shutting down idle resources, using Auto Scaling, and committing to discounted usage for steady workloads all help reduce unnecessary spending. In contrast, always running full-size non-production environments and standardizing on oversized instances create avoidable fixed costs and waste. These anti-patterns ignore the flexibility and cost benefits that the AWS Cloud is designed to provide.

Continue with full practice

Use the AWS CLF-C02 Practice Test page for the full IT Mastery route, mixed-topic practice, timed mock exams, explanations, and web/mobile app access.

Try AWS CLF-C02 on Web View AWS CLF-C02 Practice Test

Free review resource

Read the AWS CLF-C02 Cheat Sheet on Tech Exam Lexicon, then return to IT Mastery for timed practice.

Revised on Thursday, May 14, 2026