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

Free CLF-C02 practice questions: Cloud Technology & Services

The biggest domain at 34%, and the one with the most services to keep apart. Seven questions with the reasoning attached — CLF-C02, 2026 edition.

Here are 7 typical technology and services questions in the exam's own style — free, with the answer explained, no sign-up.

Straight to the 7 free questions ↓

At 34% of the exam, Cloud Technology and Services is the biggest CLF-C02 domain — about 22 of your 65 questions. It is also the domain with the longest list of names attached to it, which is why it feels the most intimidating. It should not. The exam is not asking you to build anything; it is asking whether you know what each service is for.

The trap is that every option is real

Here is the shape of almost every question in this domain. You are asked what distributes incoming traffic across instances, and the options are CloudFront, Elastic Load Balancing, Auto Scaling and VPC. All four exist. All four are AWS services. All four are in the general vicinity of “networking and traffic”. Only one distributes traffic across instances.

That is the entire difficulty, and it is worth naming plainly, because it changes how you should study. Recognising a service name feels like knowing the answer — right up until the moment three names all look equally familiar. The defence is not more depth. It is being able to complete this sentence for each core service, in one line: “X is the service for ___.”

Get that, and the distractors stop being tempting, because you are no longer matching vibes. You are matching a job description.

Storage: three types, three services

The one mapping in this domain that repays memorising outright:

  • Object storage — Amazon S3. Objects in buckets, addressed by key, reached over HTTP. Reach for it for files, backups, static assets, data lakes.
  • Block storage — Amazon EBS. A virtual disk attached to one EC2 instance. It behaves like a drive because it is one.
  • File storage — Amazon EFS. A shared file system that many instances mount at once.

If a question mentions a shared file system, it is EFS. A disk for one instance, EBS. Anything addressed as an object over HTTP, S3. This single distinction resolves more questions in this domain than any other fact you could learn.

Compute: how much of the server do you still own?

The compute services form a ladder, and each rung hands more of the work to AWS. EC2 gives you a virtual machine: you choose the size, you patch the guest OS, you pay while it runs. Lightsail bundles a simplified virtual private server for straightforward workloads. Containers — ECS, EKS, Fargate — package the application with its dependencies, and Fargate additionally removes the servers underneath. Lambda is the far end: you supply a function, AWS runs it on demand, and there is nothing to size, patch or pay for while it sits idle.

The exam tests the ends of this ladder more than the middle. When a question says “without provisioning or managing servers” and “pay only for what you use”, it has written Lambda’s definition into the question stem. When it says “full control over the operating system”, it has written EC2’s.

Global infrastructure: the layer questions are built on

Three concepts, and the exam checks whether you can keep them apart.

Regions are geographic areas you choose deliberately. Four things drive the choice, and the exam expects all four: compliance and data residency (some data is not legally permitted to leave a jurisdiction), latency to your users, whether the services you need are available there, and cost — prices genuinely differ by Region.

Availability Zones are one or more physically separate data centres within a Region, with their own power, cooling and networking, connected by AWS’s private low-latency links. Their independence is the whole product. Spreading a workload across AZs is the AWS answer to “what if a data centre fails” — and the reason a question about several instances in one AZ is always wrong.

Edge locations are a different layer entirely, outside the Regions and far more numerous. CloudFront caches content there; Route 53 answers DNS there. They exist to serve users faster.

The confusion the exam mines: edge locations are for speed, AZs are for availability, Regions are for reach and residency. An answer that offers CloudFront to a question about surviving a data-centre failure is a distractor built precisely on that mix-up.

Databases: relational, or not

Four database services carry the questions, and they separate cleanly once you ask what shape the data is.

Amazon RDS is the managed relational database — tables, joins, SQL, and AWS handling backups, patching and failover. Amazon Aurora is AWS’s own relational engine, compatible with MySQL and PostgreSQL and built for higher performance; treat it as RDS’s faster sibling. Amazon DynamoDB is the odd one out and the most tested: fully managed, but NoSQL — key-value and document data, no joins, single-digit millisecond response at any scale. Amazon Redshift looks relational but is a data warehouse, built to run analytics across very large volumes rather than to serve transactions.

The mix-up to guard against is DynamoDB against RDS. Both are managed, so “managed database” does not decide it. The word to look for is relational: if the scenario needs tables and joins, it is RDS or Aurora; if it describes key-value lookups at massive scale, it is DynamoDB.

Amazon ElastiCache rounds the group out and is not a database at all — it is an in-memory cache that sits in front of one to make it faster.

Networking: four services, four jobs

The networking names are the most interchangeable-looking in the exam, and each has exactly one job:

  • Amazon VPC — your own isolated virtual network inside AWS.
  • Elastic Load Balancing — distributes incoming traffic across several targets.
  • EC2 Auto Scaling — adds and removes instances as demand moves.
  • Amazon Route 53 — DNS: it turns your domain name into an address.

ELB and Auto Scaling are the pair worth pinning down, because they usually appear together in real architectures and therefore together in options. ELB spreads traffic across the instances that exist. Auto Scaling changes how many exist. A question about handling a traffic spike could plausibly be either, so read what it actually asks: sharing load out is ELB, having more capacity to share it to is Auto Scaling.

How to use the questions below

Answer first, then read the explanation past the correct letter. In this domain especially, the paragraph explaining why the other three are wrong is the whole lesson — because on the real exam, all four will look just as plausible as they do here, and nobody will tell you which three were the decoys.

AWS global infrastructure: a Region contains multiple Availability Zones, each made of one or more physically separate data centres with their own power and networking, linked by low-latency connections. Edge locations sit outside the Regions and cache content close to users. High availability comes from spreading across Availability Zones, disaster recovery from spreading across Regions, and speed from edge locations.

7 free CLF-C02 practice questions

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

A company wants its application to stay available if a single data centre fails. What is the AWS-recommended approach?

Answer: A — Run the application in multiple Availability Zones within one Region

Availability Zones are physically separate, with their own power and networking, and joined by low-latency links — which is exactly why spreading across them survives the loss of one. Why not the others: several instances in one AZ all fail together when that AZ does. Glacier backups aid recovery after the fact but keep nothing running. CloudFront caches content nearer to users; it is a performance service and does not make your origin highly available.

CLF-C02 Question 2 of 7

Which AWS service is an object storage service?

Answer: B — Amazon S3

Amazon S3 stores objects in buckets, addressed by key, reachable over HTTP — the definition of object storage. Why not the others: EBS is block storage, a virtual disk attached to a single EC2 instance. EFS is file storage, a shared file system many instances can mount at once. RDS is a managed relational database. The three storage types — object, block, file — map to S3, EBS and EFS, and the exam expects that mapping cold.

CLF-C02 Question 3 of 7

Which service should a company use to run code without provisioning or managing servers, paying only for the compute time consumed?

Answer: B — AWS Lambda

AWS Lambda is the serverless compute service: you supply the code, AWS runs it on demand, and you are billed for execution time rather than for an instance that sits waiting. Why not the others: EC2 gives you virtual machines you must size, patch and pay for while they run. Lightsail bundles a simplified virtual private server — still a server. AWS Batch schedules batch jobs, but it runs them on compute you provision.

CLF-C02 Question 4 of 7

A company must choose a Region for a new workload. Which factors are the most relevant?

Answer: B — Compliance and data residency, latency to users, service availability, and cost

Region choice is a trade-off across four things AWS names explicitly: where the law requires the data to live, how close users are, whether the services you need exist there, and the price, which differs by Region. Why not the others: edge locations are not inside Regions — they are a separate, far more numerous layer. Region codes are naming, not selection criteria. AZ count matters, but on its own it cannot override a data-residency requirement or a missing service.

CLF-C02 Question 5 of 7

Which service provides a managed relational database with automated backups and patching?

Answer: B — Amazon RDS

Amazon RDS is the managed relational database service — AWS handles backups, patching and failover while you keep the schema and the data. Why not the others: DynamoDB is managed too, but it is a NoSQL key-value store, not relational. Redshift is relational in flavour but is a data warehouse built for analytics over large volumes, not for transactional workloads. ElastiCache is an in-memory cache, which speeds a database up rather than being one.

CLF-C02 Question 6 of 7

What is the primary purpose of Amazon CloudFront?

Answer: A — To deliver content to users with lower latency by caching it at edge locations

CloudFront is the content delivery network: it caches your content at edge locations around the world so it is served from near the user. Why not the others: distributing traffic across instances is Elastic Load Balancing. Adding and removing instances with demand is EC2 Auto Scaling. An isolated virtual network is Amazon VPC. All four are genuine services, which is precisely the trap — recognising the name is not the same as knowing the job.

CLF-C02 Question 7 of 7

Which statement about Availability Zones is correct?

Answer: B — An Availability Zone consists of one or more discrete data centres with redundant power and networking.

An AZ is one or more physically separate data centres with independent power, cooling and networking — the independence is the entire point. Why not the others: an AZ is not necessarily a single building. Shared power across AZs would defeat their purpose, so they do not share it. And AZs are joined by AWS's own high-bandwidth, low-latency private links, not by the public internet.

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 7 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). Cloud Technology and Services is domain 3 and carries 34% of the scored questions, making it the largest of the four: roughly 22 of your 65 questions.
Are these real exam questions?
No. They are our own questions, written in the style and difficulty of the exam. Real exam items are protected by the AWS certification agreement, and sharing them can cost a candidate their certification. Ours are original — and unlike a leaked item, they come with the reasoning.
How many AWS services do I actually need to know?
Far fewer than the catalogue suggests. The exam concentrates on the core: EC2, Lambda, S3, EBS, EFS, RDS, DynamoDB, VPC, CloudFront, Route 53, ELB and Auto Scaling, plus a handful of management tools. What is tested is what each is for — one sentence — not how to configure it.
Do I need hands-on experience for this domain?
It helps, but it is not required. The CLF-C02 asks what a service is for and when you would reach for it, not how to build with it. If you can say in one sentence why you would choose S3 over EBS, that is the level being tested.

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.