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

Free CLF-C02 practice questions: EC2 & S3 fundamentals

The two services the exam mentions more than any other — compute and object storage. Seven questions with the reasoning attached, CLF-C02, 2026 edition.

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

Straight to the 7 free questions ↓

Amazon EC2 and Amazon S3 are the two services the CLF-C02 mentions more than any others, and they anchor the Cloud Technology and Services domain — the biggest domain on the exam at 34%. You do not need to configure either one to pass. You need to know what each is, and to keep a few sharp distinctions straight that the exam deliberately blurs.

EC2: a server you control

EC2 gives you a virtual server in the cloud. You pick the instance type — a combination of CPU, memory and network capacity — and you control the operating system: you can install software, open ports and log in. That control is the whole point, and it is also what separates EC2 from everything more managed. If a question describes needing OS-level access or a specific runtime you must install yourself, EC2 is the answer; if it describes wanting to avoid managing servers, EC2 is the wrong answer and something like Lambda or a managed service is right.

Two supporting ideas come up. An AMI (Amazon Machine Image) is the template an instance boots from — the OS plus any baked-in configuration. And EC2 is resizable: you can change instance size, and you can run one or a thousand instances. The exam treats EC2 as the default “I need a computer in the cloud” service.

The storage fork the exam loves: EBS vs instance store

An EC2 instance needs disk. There are two kinds, and telling them apart is a reliable exam point:

  • Amazon EBS is a network-attached block volume. Its life is independent of the instance — stop the instance and the data is still there. Use it for anything that must persist: boot volumes, databases, files you cannot lose.
  • Instance store is physically attached, fast, and temporary. Stop the instance and the data is gone. It is for scratch data, caches, anything you can rebuild.

The trap is always the same: a scenario where data “must not be lost” paired with an instance store option. If persistence matters, the answer is EBS.

S3: objects, not disks

Amazon S3 is object storage. You create a bucket and put objects (files) in it, and you reach them over the internet. It scales to any amount of data, it is highly durable, and there is no instance in the picture — which is exactly why it is wrong whenever a question needs OS access, and right whenever a question needs to store or serve files cheaply. S3 can even host a static website directly.

Where S3 gets tested is storage classes, and you only need the shape of the spectrum, not the price list:

  • S3 Standard — frequently accessed data, highest cost, instant access.
  • S3 Standard-Infrequent Access — accessed rarely but instantly when needed, cheaper.
  • S3 Glacier / Glacier Deep Archive — archival, lowest cost, retrieval measured in minutes to hours.
  • S3 Intelligent-Tiering — moves objects between tiers for you when the access pattern is unknown.

Match the class to how often the data is touched and how fast it must come back. That is the entire question.

How to use the questions below

Answer each one before you open the explanation, and when you are wrong, read past the correct letter to the part that says why the other three fail. On EC2 and S3 the distractors are always real, sensible services — EBS beside instance store, Glacier beside Standard — and the exam is checking whether you can separate them on sight, not whether you have heard the names.

Amazon EC2 as resizable compute with its storage options side by side: EBS is a persistent block volume attached to one instance, instance store is temporary storage lost when the instance stops. Amazon S3 is object storage in buckets with tiers from S3 Standard for frequent access down to Glacier Deep Archive for long-term retention.

7 free CLF-C02 practice questions

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

A team needs full control over the operating system of a server — installing custom software and choosing the CPU and memory size. Which AWS service fits?

Answer: A — Amazon EC2

Amazon EC2 gives you a virtual server where you choose the instance size and control the operating system. Why not the others: Lambda runs your code without any server or OS for you to manage. S3 stores objects, it does not run software. RDS is a managed database, not a general-purpose server you install software on.

CLF-C02 Question 2 of 7

What does an Amazon Machine Image (AMI) provide?

Answer: A — A template with an operating system and configuration used to launch EC2 instances

An AMI is the blueprint an instance boots from — the OS, and any pre-installed software and settings. Why not the others: a running instance is the result of launching an AMI, not the AMI itself. A block volume is Amazon EBS. A firewall for an instance is a security group. The AMI is the image; everything else is what surrounds the instance once it runs.

CLF-C02 Question 3 of 7

A company needs to store and retrieve any amount of unstructured objects — images, videos, backups — accessible over the internet. Which service is designed for this?

Answer: A — Amazon S3

Amazon S3 is object storage: you put objects in buckets and retrieve them over HTTP, at effectively unlimited scale. Why not the others: EBS is block storage attached to a single EC2 instance, not internet-facing object storage. EFS is a shared file system for Linux instances. AWS Backup orchestrates backups of other services; it is not the primary object store.

CLF-C02 Question 4 of 7

Which storage option persists independently of an EC2 instance and can be used as a boot or data volume attached to that instance?

Answer: A — Amazon EBS

Amazon EBS is a network-attached block volume whose life is independent of the instance — stop the instance and the data remains. Why not the others: an instance store is physically attached and temporary, so its data is lost when the instance stops. S3 is object storage, not a block volume you boot from. CloudFront is a content delivery network, not storage.

CLF-C02 Question 5 of 7

What happens to the data on an EC2 instance store volume when the instance is stopped?

Answer: A — It is lost, because instance store is temporary

Instance store is ephemeral: its data does not survive a stop or a hardware failure. If you need the data to persist, use EBS. Why not the others: nothing is automatically preserved, copied to S3, or snapshotted for you — that is precisely the trap. The exam uses this to check whether you know the difference between temporary and persistent storage.

CLF-C02 Question 6 of 7

Data must be retained for several years for compliance, is almost never accessed, and cost should be as low as possible. A retrieval time measured in hours is acceptable. Which S3 storage class fits best?

Answer: A — S3 Glacier Deep Archive

Glacier Deep Archive is the lowest-cost class, built for data you rarely touch and can wait hours to retrieve. Why not the others: S3 Standard is for frequently accessed data and costs the most. Standard-IA is for infrequent access with instant retrieval, cheaper than Standard but far above Deep Archive. Intelligent-Tiering moves objects automatically but is aimed at unknown or changing access patterns, not deliberate cold archival.

CLF-C02 Question 7 of 7

A developer wants to host a simple static website — HTML, CSS and images — without managing any servers. Which is the most cost-effective AWS option?

Answer: A — Amazon S3 static website hosting

S3 can serve static files directly as a website, with no server to run or patch and you pay only for storage and requests. Why not the others: EC2 means running and maintaining servers for content that never changes on the server side — more cost and effort. RDS is a database, not a web host. Elastic Beanstalk provisions EC2 behind the scenes, so it is heavier than needed for purely static files.

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). EC2 and S3 sit in the Cloud Technology and Services domain, which is 34% of the scored questions — the largest domain — so these two services appear again and again.
Are these real exam questions?
No. They are our own questions, written in the style and difficulty of the exam. Reproducing real exam items violates the AWS certification agreement and can get your certification revoked — and a memorised item teaches you nothing about the one you have not seen. The value here is the reasoning, which real items never come with.
Do I need to know every EC2 instance type and S3 class by heart?
No. The exam tests the distinctions, not the catalogue: EC2 versus a managed or serverless option, EBS versus instance store, and roughly which S3 class fits frequent, infrequent or archival access. Knowing what each one is for — one sentence each — is enough at this level.
What is the difference between EBS and S3 in one line?
EBS is a block volume attached to one EC2 instance, like a disk. S3 is object storage in buckets, reached over the internet, with no instance involved. Block for a server, objects for everything else.

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.