CLF-C02 · topic practice

Cloud Technology and Services practice questions

Cloud Technology and Services is the heart of the AWS Certified Cloud Practitioner (CLF-C02) exam, covering the fundamental building blocks of cloud computing. In plain English, this domain teaches you how AWS provides on-demand computing power, storage, databases, and networking over the internet, so you don't have to buy and maintain physical servers. You'll learn about core services like Amazon EC2 for virtual servers, Amazon S3 for file storage, and Amazon RDS for managed databases. The domain also explains deployment models (cloud, hybrid, on-premises) and the shared responsibility model, which clarifies who secures what in the cloud. Why is this important in real-world IT? Every company moving to the cloud needs professionals who understand which service fits which workload. For example, a startup might use EC2 to host a web app, S3 for user uploads, and Lambda for serverless backend functions—all without provisioning a single physical server. Security teams rely on the shared responsibility model to know they must configure IAM roles and encryption, while AWS handles the physical data center security. Without this knowledge, you could overpay for resources, create security gaps, or choose the wrong service for the job. The CLF-C02 exam tests your ability to identify AWS services, describe their use cases, and understand basic architectural best practices. You'll see questions like 'Which service provides a fully managed relational database?' (answer: Amazon RDS) or 'Which deployment model combines on-premises and cloud resources?' (answer: hybrid). You also need to know the AWS global infrastructure—Regions, Availability Zones, and Edge Locations—and how they enable high availability and low latency. The exam doesn't ask for deep technical configuration but expects you to recognize service names and their primary functions. To study effectively, start by reviewing the AWS Well-Architected Framework's five pillars (operational excellence, security, reliability, performance efficiency, cost optimization). Then, use AWS Free Tier to launch an EC2 instance, create an S3 bucket, and set up a simple RDS database. Hands-on practice solidifies concepts better than reading. Focus on comparing services: S3 vs. EBS vs. EFS for storage, EC2 vs. Lambda for compute, and RDS vs. DynamoDB for databases. Finally, take practice exams to identify weak areas—especially around pricing models (On-Demand vs. Reserved vs. Spot Instances) and support plans.

Courseiva uses original exam-style practice questions designed for learning and revision. The goal is to understand the concepts, recognise exam patterns, and improve through explanations — not memorise copied exam dumps.

Reviewed byJohnson Ajibi· MSc IT Security
20 questionsDomain: Cloud Technology and Services

What the exam tests

What to know about Cloud Technology and Services

Cloud Technology and Services covers the core AWS services (compute, storage, database, networking), the shared responsibility model, deployment models, and the global infrastructure—essentially the foundational knowledge needed to start using AWS.

Identify core AWS compute services: EC2, Lambda, Elastic Beanstalk, and their primary use cases

Differentiate storage services: S3 (object), EBS (block), EFS (file), and Glacier (archival)

Recognize database services: RDS (relational), DynamoDB (NoSQL), Redshift (data warehouse)

Understand the shared responsibility model: what AWS secures vs. what the customer secures

Describe AWS global infrastructure: Regions, Availability Zones, Edge Locations, and their purposes

Identify deployment models: cloud, on-premises, hybrid, and when to use each

Watch out for

Common Cloud Technology and Services exam traps

  • Confusing S3 storage classes (e.g., S3 Standard vs. S3 Glacier) and their retrieval times
  • Mixing up EC2 pricing models: On-Demand, Reserved, Spot Instances, and Savings Plans
  • Thinking the shared responsibility model means AWS secures everything, including customer data and IAM
  • Assuming all AWS services are available in every Region (some are Region-specific or have limited availability)

Practice set

Cloud Technology and Services questions

20 questions · select your answer, then reveal the explanation

Question 1mediummultiple choice
Read the full NAT/PAT explanation →

A healthcare company needs to store patient medical records that must be retained for 10 years to comply with regulatory requirements. These records are accessed very rarely, only in the event of an audit or legal request. Which Amazon S3 storage class is the MOST cost-effective choice for this data?

A company hosts a static website on Amazon S3. The website serves product images and documents to customers around the world. Users in distant regions report slow load times. The company wants to reduce latency for all users without changing the existing S3 bucket configuration. Which AWS service should the company use?

A company is developing a microservices application on AWS. The application includes a front-end web tier and a backend order processing service. The front-end sends order requests to the backend, which may take several seconds to process. The company wants to ensure that the front-end does not wait for the backend to complete, and that no orders are lost if the backend service is temporarily unavailable. Which AWS service should the company use to decouple the front-end and backend?

A development team is building a serverless application that processes image uploads to Amazon S3. The application needs to automatically generate a thumbnail version of each uploaded image and store it in a separate S3 bucket. The team wants to minimize operational overhead and only pay for the compute time used during thumbnail generation. Which AWS service should the team use to execute the thumbnail generation code in response to S3 upload events?

A company runs a web application on multiple Amazon EC2 instances that are behind an Application Load Balancer. The operations team wants to ensure that if any EC2 instance fails, a new instance is automatically launched to replace it and maintain a minimum number of running instances. Which AWS service should the company use to meet this requirement?

A company runs a multiplayer gaming application on Amazon EC2 instances in the us-east-1 Region. The application uses the UDP protocol for real-time communication between players and game servers. Players in Asia and Europe report high latency and packet loss. The company wants to improve performance by directing player traffic from the nearest edge location to the application over the AWS global network, without modifying the application code. Which AWS service should the company use?

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?

A company runs a global e-commerce website hosted on Amazon EC2 instances in the us-west-2 Region. The website includes static assets (product images, CSS, JavaScript) and dynamic content generated by the application. The company wants to improve page load times for users in Europe and Asia by caching static content at edge locations, while also reducing the direct load on the EC2 instances. Which AWS service should the company use?

Question 9mediummultiple choice
Read the full NAT/PAT explanation →

A company is refactoring its legacy application into a microservices architecture using Docker containers. The operations team wants to deploy and manage these containers on AWS without the need to provision, patch, or manage the underlying servers. The solution must automatically scale containers based on demand and integrate with services like Application Load Balancer and Amazon RDS. Which AWS compute service should the company use?

Question 10mediummultiple choice
Study the full Python automation breakdown →

A company's data analytics team needs to process log files immediately after they are uploaded to an Amazon S3 bucket. The processing logic is implemented as a custom Python script that runs for about 10 seconds per file. The team wants a fully managed solution that does not require provisioning or managing servers, automatically scales with the number of incoming log files, and executes the script only when new files are uploaded. Which AWS service should the team use to meet these requirements?

Question 11mediummultiple choice
Read the full NAT/PAT explanation →

A company has a serverless architecture on AWS for its order processing system. The system uses AWS Lambda functions to validate payment, check inventory, update the database, and send email notifications. The company needs a managed service to coordinate these functions into a workflow, implement retry logic in case of failures, and manage the execution of each step sequentially. Which AWS service should the company use?

A company stores product images in an Amazon S3 bucket. New images are accessed frequently for the first 30 days, but access drops sharply after that. The company wants to automatically optimize storage costs by moving data between access tiers without any manual intervention or upfront lifecycle policy setup. Which Amazon S3 storage class should the company use to meet these requirements?

Question 13mediummultiple choice
Review the full routing breakdown →

A company hosts a web application on Amazon EC2 instances behind an Application Load Balancer (ALB) in the us-east-1 Region. The application serves users worldwide, and the company wants to optimize both performance and availability for all users. The solution should use the AWS global network to route traffic from users to the nearest edge location and then over the AWS backbone to the ALB, without caching content at edge locations. Which AWS service should the company use?

A company runs its primary database on an Amazon RDS for MySQL DB instance in the us-east-1 Region. The company's disaster recovery policy requires that the database be recoverable in a different AWS Region within 1 hour of a region-wide failure, with a Recovery Point Objective (RPO) of less than 5 minutes and a Recovery Time Objective (RTO) of less than 1 hour. Which AWS feature should the company use to meet these requirements?

A company runs a latency-sensitive application on AWS that must communicate with an on-premises data center. The company requires a dedicated, private network connection that provides consistent, low-latency performance and bypasses the public internet. Which AWS service should the company use to meet these requirements?

A development team needs to deploy a web application on AWS quickly. The team wants a fully managed service that automatically handles capacity provisioning, load balancing, auto-scaling, and application health monitoring. The team does not want to manage the underlying Amazon EC2 instances or the application stack manually. Which AWS service should the team use?

A company is building a web application that requires a fully managed NoSQL database with single-digit millisecond latency at any scale. The application will experience unpredictable traffic spikes, and the database must automatically scale throughput capacity up and down without manual intervention. The developers want to focus on application code rather than database management tasks. Which AWS database service should the company choose?

Question 18mediummultiple choice
Read the full DNS explanation →

A company hosts its primary web application on Amazon EC2 instances in the us-east-1 AWS Region. To meet disaster recovery requirements, the company has launched an identical set of EC2 instances in the eu-west-1 Region. The company wants to direct all user traffic to the us-east-1 endpoints under normal conditions. If us-east-1 becomes unhealthy due to a regional outage, traffic must be automatically redirected to the eu-west-1 endpoints. The company uses Amazon Route 53 as its DNS service. Which Route 53 routing policy should the company use to meet these requirements?

A company runs a monolithic web application on Amazon EC2 that processes user-uploaded files synchronously. During peak hours, the application experiences slow response times because the file processing blocks the web server. The company wants to decouple the upload process from the file processing to improve responsiveness and allow each component to scale independently. The file processing backend must poll for new work and handle failures gracefully by retrying failed messages. Which AWS service should the company use to implement this decoupling?

A DevOps team needs to deploy a multi-tier web application on AWS. The application consists of Amazon EC2 instances, an Application Load Balancer, an Amazon RDS database, and security groups. The team wants to define all these resources in a single declarative template, automatically manage the creation order and dependencies, and version control the template for repeatable deployments. Which AWS service should the team use to meet these requirements?

Free account

Track your progress over time

Create a free account to save your results and see which topics improve across sessions.

Focused Cloud Technology and Services sessions

Start a Cloud Technology and Services only practice session

Every question in these sessions is drawn from the Cloud Technology and Services domain — nothing else.

Related practice questions

Related CLF-C02 topic practice pages

Move into related areas when this topic feels solid.

Frequently asked questions

What does the CLF-C02 exam test about Cloud Technology and Services?
Cloud Technology and Services covers the core AWS services (compute, storage, database, networking), the shared responsibility model, deployment models, and the global infrastructure—essentially the foundational knowledge needed to start using AWS.
How should I use these practice questions?
Select your answer before revealing the explanation. Then read why each option is right or wrong — this active recall approach builds retention far faster than re-reading notes.
Can I practise just Cloud Technology and Services questions in a focused session?
Yes — the session launcher on this page draws every question from the Cloud Technology and Services domain. Use a 10-question session first to gauge your baseline, then move to 20 or 30 once the weak spots are clear.
Where can I practise other CLF-C02 topics?
Use the topic links above to move to related areas, or go back to the CLF-C02 question bank to see all topics.
Are these real exam questions or dumps?
These are original practice questions written to test the same concepts the CLF-C02 exam covers. They are not copied from any real exam or dump site.