Practice questions
1 Benefits of the cloud: variable expense
A startup wants to avoid buying servers up front and pay only for the computing resources it uses. Which benefit of the AWS Cloud does this describe?
- AOption A: Trading fixed expense for variable expense
- BOption B: Owning and depreciating hardware
- COption C: Buying capacity for peak demand in advance
- DOption D: Operating its own data centers
Show answer and explanation
Answer: A. In the cloud you pay for what you use instead of making large up-front investments in data centers and servers. AWS describes this as trading fixed expense for variable expense.
Why the other options are wrong
- B. Owning hardware is the traditional on-premises model, the opposite of pay-as-you-go.
- C. Provisioning for peak demand in advance leaves idle capacity. In the cloud you scale to match demand.
- D. Running your own data centers is what moving to the cloud avoids.
2 Elasticity
An online store expects traffic to spike during a holiday sale and drop afterward. Which cloud benefit lets it add resources during the spike and release them afterward?
- AOption A: Elasticity
- BOption B: Fault tolerance
- COption C: Economies of scale
- DOption D: Agility
Show answer and explanation
Answer: A. Elasticity is the ability to acquire resources when you need them and release them when you no longer do, so capacity follows demand automatically.
Why the other options are wrong
- B. Fault tolerance is the ability to keep operating when a component fails.
- C. Economies of scale describe AWS's lower per-unit costs from aggregated usage. It is not about scaling one workload up and down.
- D. Agility is the speed at which you can provision resources and try new ideas.
3 Economies of scale
Why has AWS been able to lower prices for its services over time?
- AOption A: Aggregated usage from many customers gives AWS economies of scale
- BOption B: Customers must sign multi-year contracts for every service
- COption C: AWS shifts hardware maintenance costs to customers
- DOption D: AWS sells only Spot capacity
Show answer and explanation
Answer: A. Because so many customers use AWS, AWS achieves higher economies of scale, and it passes part of that saving on as lower pay-as-you-go prices.
Why the other options are wrong
- B. Long-term commitments are optional discounts, such as Savings Plans, not a requirement.
- C. AWS remains responsible for maintaining the physical infrastructure.
- D. Spot is one purchasing option. It is not the reason AWS prices fall.
4 Agility
A development team wants to test a new idea by provisioning resources in minutes and shutting them down if the experiment fails. Which benefit of the cloud does this describe?
- AOption A: Agility
- BOption B: Elasticity
- COption C: High availability
- DOption D: Economies of scale
Show answer and explanation
Answer: A. Agility means you can provision resources quickly and cheaply, so experimenting costs less time and money and failed ideas are inexpensive to abandon.
Why the other options are wrong
- B. Elasticity is about matching capacity to changing demand for a running workload.
- C. High availability is about keeping a workload running when components fail.
- D. Economies of scale describe AWS's lower per-unit costs.
5 Global reach
A company wants to lower latency for customers in Europe and Asia by deploying its application near them. Which cloud benefit makes this practical?
- AOption A: Going global in minutes by deploying to multiple AWS Regions
- BOption B: Buying and racking servers in each country
- COption C: Using one Availability Zone with larger instances
- DOption D: Serving all users from a single Region
Show answer and explanation
Answer: A. With the AWS global infrastructure you can deploy an application to Regions around the world in minutes, putting it close to users without building facilities.
Why the other options are wrong
- B. Building out hardware in each country is the slow, expensive on-premises approach.
- C. A larger instance in one Availability Zone does nothing to bring the application closer to distant users.
- D. Serving everyone from one Region leaves distant users with higher latency.
6 Vertical scaling
A company resizes a single Amazon EC2 instance from a smaller to a larger instance type to handle more load. What is this an example of?
- AOption A: Vertical scaling
- BOption B: Horizontal scaling
- COption C: Loose coupling
- DOption D: Fault tolerance
Show answer and explanation
Answer: A. Vertical scaling (scaling up) adds CPU, memory, or other capacity to an existing resource. Horizontal scaling adds more resources, such as more instances.
Why the other options are wrong
- B. Horizontal scaling means adding more instances, not making one instance larger.
- C. Loose coupling is a design approach where components depend on each other as little as possible.
- D. Fault tolerance is about continuing to operate when a component fails.
7 Well-Architected pillar: Reliability
A company reviews whether its workload can recover from failures and automatically restore service. Which pillar of the AWS Well-Architected Framework does this review focus on?
- AOption A: Reliability
- BOption B: Performance Efficiency
- COption C: Sustainability
- DOption D: Operational Excellence
Show answer and explanation
Answer: A. The Reliability pillar covers a workload's ability to perform its function correctly and consistently, including recovering from failures and meeting demand.
Why the other options are wrong
- B. Performance Efficiency is about using computing resources efficiently to meet requirements as demand changes.
- C. Sustainability is about minimizing the environmental impact of workloads.
- D. Operational Excellence is about running and monitoring systems and continually improving processes.
8 Well-Architected pillar: Operational Excellence
Which Well-Architected pillar focuses on running and monitoring systems to deliver business value and continually improving processes and procedures?
- AOption A: Operational Excellence
- BOption B: Security
- COption C: Reliability
- DOption D: Cost Optimization
Show answer and explanation
Answer: A. Operational Excellence covers running workloads effectively, gaining insight into operations through monitoring, and continuously improving supporting processes.
Why the other options are wrong
- B. Security is about protecting data, systems, and assets.
- C. Reliability is about recovering from failures and meeting demand.
- D. Cost Optimization is about avoiding unnecessary costs.
9 Well-Architected pillars (select two)
Which TWO are pillars of the AWS Well-Architected Framework? (Select TWO.)
- AOption A: Cost Optimization
- BOption B: Scalability
- COption C: Performance Efficiency
- DOption D: Portability
- EOption E: Interoperability
Show answer and explanation
Answer: A and C. The six pillars are Operational Excellence, Security, Reliability, Performance Efficiency, Cost Optimization, and Sustainability.
Why the other options are wrong
- B. Scalability is a goal addressed within pillars such as Performance Efficiency and Reliability. It is not a pillar itself.
- D. Portability is not a Well-Architected pillar.
- E. Interoperability is not a Well-Architected pillar.
10 Well-Architected pillar: Sustainability
Which Well-Architected pillar addresses minimizing the environmental impact of running cloud workloads?
- AOption A: Sustainability
- BOption B: Cost Optimization
- COption C: Security
- DOption D: Reliability
Show answer and explanation
Answer: A. The Sustainability pillar focuses on reducing the environmental impact of workloads, for example by maximizing utilization and choosing efficient resources.
Why the other options are wrong
- B. Cost Optimization is about delivering value at the lowest price point.
- C. Security is about protecting information and systems.
- D. Reliability is about workload resilience and recovery.
11 Design principle: loose coupling
An architect places a message queue between the web tier and the processing tier so that a failure in one tier does not stop the other. Which design principle does this follow?
- AOption A: Loose coupling (decoupling components)
- BOption B: Tight coupling
- COption C: Manual scaling
- DOption D: Monolithic deployment
Show answer and explanation
Answer: A. Decoupled components interact through a buffer such as a queue (for example Amazon SQS), so one component can fail or scale without bringing down the others.
Why the other options are wrong
- B. Tight coupling makes components depend directly on each other, so a failure spreads.
- C. Manual scaling is not a design principle for resilience. Cloud design favors automated elasticity.
- D. A monolithic deployment bundles everything together, which is the opposite of decoupling.
12 AWS Cloud Adoption Framework
Which AWS resource helps an organization plan its cloud adoption by identifying skills and process gaps across perspectives such as business, people, governance, platform, security, and operations?
- AOption A: AWS Cloud Adoption Framework (AWS CAF)
- BOption B: AWS Trusted Advisor
- COption C: AWS Pricing Calculator
- DOption D: AWS Health Dashboard
Show answer and explanation
Answer: A. The AWS CAF organizes guidance into six perspectives (business, people, governance, platform, security, and operations) to help organizations plan and manage cloud transformation.
Why the other options are wrong
- B. Trusted Advisor checks your existing AWS environment against best practices.
- C. The Pricing Calculator estimates the cost of AWS workloads.
- D. The AWS Health Dashboard shows service events that affect your resources.
13 Migration strategy: rehost
A company moves an on-premises application to Amazon EC2 with minimal changes to the application. Which migration strategy is this?
- AOption A: Rehost (lift and shift)
- BOption B: Refactor
- COption C: Repurchase
- DOption D: Retire
Show answer and explanation
Answer: A. Rehosting moves an application to the cloud as it is, without redesigning it. It is often the fastest way to migrate.
Why the other options are wrong
- B. Refactoring re-architects the application to use cloud-native features.
- C. Repurchasing replaces the application with a different product, often SaaS.
- D. Retiring decommissions applications that are no longer needed.
14 Migration strategy: repurchase
A company replaces its self-hosted CRM software with a subscription to a SaaS CRM product. Which migration strategy is this?
- AOption A: Repurchase
- BOption B: Rehost
- COption C: Retain
- DOption D: Replatform
Show answer and explanation
Answer: A. Repurchasing means moving to a different product, commonly a SaaS offering, instead of migrating the existing application.
Why the other options are wrong
- B. Rehosting moves the same application to the cloud unchanged.
- C. Retaining keeps an application where it is, usually on premises, for now.
- D. Replatforming makes a few optimizations, such as moving a database to a managed service, without changing the core architecture.
15 Cloud economics: right-sizing
A company finds that its Amazon EC2 instances use less than 10% of their CPU. Which action reduces cost most directly?
- AOption A: Move to smaller instance types that match the workload (right-sizing)
- BOption B: Add more instances for redundancy
- COption C: Move to larger instance types
- DOption D: Turn off monitoring
Show answer and explanation
Answer: A. Right-sizing matches instance type and size to what the workload needs. Paying for capacity you don't use is one of the most common sources of cloud waste.
Why the other options are wrong
- B. More instances add cost and don't address the underuse.
- C. Larger instances raise cost further.
- D. Turning off monitoring removes visibility and does not reduce compute spend.
What Domain 1 covers on the CLF-C02
Benefits of the AWS Cloud
Know the headline benefits: trading fixed expense for variable expense, economies of scale, no need to guess capacity, speed and agility, no data center maintenance, and going global in minutes. Separate elasticity (matching capacity to demand) from scalability, and vertical scaling (a bigger instance) from horizontal scaling (more instances).
Design principles
The AWS Well-Architected Framework has six pillars: Operational Excellence, Security, Reliability, Performance Efficiency, Cost Optimization, and Sustainability. Expect questions that describe a goal and ask which pillar it belongs to, and questions on principles such as designing for failure and decoupling components.
Migration and the Cloud Adoption Framework
The AWS CAF groups guidance into six perspectives: business, people, governance, platform, security, and operations. Know the common migration strategies, including rehost, replatform, refactor, repurchase, retire, and retain, and be able to match each to a short scenario.
Cloud economics
Understand the difference between capital and operational expense, why usage-based pricing lowers up-front cost, how right-sizing removes waste, and why AWS can pass economies of scale on as lower prices.
How to use these questions
Most of Domain 1 is vocabulary: match the term to the scenario. For every miss, say the definition of the tempting wrong answer out loud. Elasticity versus agility and rehost versus replatform are the pairs people mix up most.
Practice the other domains
The exam covers four domains. See all CLF-C02 practice questions by domain, or continue with one of these:
- CLF-C02 Security and Compliance practice questions
Domain 2, about 30% of the exam, 15 questions
The shared responsibility model, IAM, security services such as GuardDuty and Inspector, and compliance resources.
- CLF-C02 Cloud Technology and Services practice questions
Domain 3, about 34% of the exam, 15 questions
Global infrastructure, compute, storage, databases, networking, and AI services. The largest domain.
- CLF-C02 Billing, Pricing, and Support practice questions
Domain 4, about 12% of the exam, 12 questions
EC2 pricing models, cost management tools, AWS Organizations billing, and AWS Support.
Keep practicing
Learn730 has 200 CLF-C02 practice questions across all four domains, 134 flashcards, and a beginner Cloud 101 section. A timed simulation exam is coming.