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

Free CLF-C02 practice questions: VPC basics

Networking on the CLF-C02 is shallow but precise. Six questions on subnets, gateways and firewalls, with the reasoning attached — 2026 edition.

Here are 6 typical VPC and networking questions in the exam's own style — free, with the answer explained, no sign-up.

Straight to the 6 free questions ↓

Networking is the part of the Cloud Technology and Services domain that looks intimidating and turns out to be shallow. The CLF-C02 does not ask you to design a network or work with address ranges. It asks whether you know what the pieces are and what each one is for. A handful of terms, cleanly separated, cover almost every question.

The VPC and its subnets

An Amazon VPC is your own isolated virtual network inside AWS. Everything else here lives in it. A VPC belongs to one Region, and inside it you create subnets, each of which sits in one Availability Zone. That scoping matters: because a subnet is tied to a single AZ, spreading your subnets across multiple AZs is how you make an application survive the loss of one.

A subnet is public or private based on one thing only: whether it has a route to an internet gateway. A public subnet has that route; a private subnet does not. Nothing about pricing, size or contents changes that definition — it is entirely about the route.

The two firewalls, and why the exam loves them

There are two ways to filter traffic in a VPC, and the exam tests the difference constantly:

  • A security group acts at the instance level and is stateful. You allow inbound traffic, and the return traffic is permitted automatically. Security groups only allow — there are no deny rules.
  • A network ACL acts at the subnet level and is stateless. It evaluates inbound and outbound traffic independently, and it can both allow and deny.

Instance and stateful, or subnet and stateless. If you can say that sentence, you own this pairing.

Gateways: in, and out

Two gateways come up:

  • An internet gateway connects the VPC to the public internet. Resources in a public subnet use it to reach and be reached.
  • A NAT gateway lets instances in a private subnet reach the internet outbound only — for updates, say — while keeping them unreachable from outside. The classic scenario is “these servers need to download patches but must never be exposed,” and the answer is a NAT gateway, not an internet gateway.

How to use the questions below

Answer each one before opening the explanation, then read past the correct letter to why the other three fail. VPC distractors are all plausible network components dropped into the wrong role — an internet gateway where a NAT gateway belongs, a network ACL described as stateful. The exam is checking whether you can keep the pieces straight, and that is exactly what the reasoning below drills.

An Amazon VPC drawn as an isolated network in one Region, containing a public subnet with a route to an internet gateway and a private subnet with no such route. A security group wraps each instance as a stateful firewall, while a network ACL sits at the subnet boundary as a stateless one.

6 free CLF-C02 practice questions

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

What is an Amazon VPC?

Answer: A — A logically isolated virtual network in AWS where you launch resources

A VPC is your own private, isolated network inside AWS, in which you place subnets and launch resources such as EC2 instances. Why not the others: a virtual server you control is EC2. A bucket is S3. A managed database is RDS. The VPC is the network those things live in, not the things themselves.

CLF-C02 Question 2 of 6

What is the defining difference between a public and a private subnet?

Answer: A — A public subnet has a route to an internet gateway; a private subnet does not

What makes a subnet public is a route to an internet gateway; without that route it is private, whatever else you configure. Why not the others: the public/private distinction is about routing, not pricing, not Region span, and not what runs inside. A subnet lives in a single Availability Zone regardless of its public or private status.

CLF-C02 Question 3 of 6

Which statement about security groups is correct?

Answer: A — A security group acts at the instance level and is stateful — return traffic for an allowed request is permitted automatically

A security group is a stateful, instance-level firewall: allow an inbound request and its response is allowed back automatically. Why not the others: the subnet-level, stateless firewall is the network ACL — that is the exam's favourite contrast. Security groups work by allowing traffic (there are no deny rules). And a security group is a control *inside* a VPC, not a replacement for one.

CLF-C02 Question 4 of 6

What does an internet gateway provide for a VPC?

Answer: A — A path for resources in the VPC to communicate with the internet

An internet gateway is what connects a VPC to the public internet, so resources in a public subnet can reach it and be reached. Why not the others: it does not encrypt traffic — that is up to TLS or a VPN. DNS is handled by Route 53 and the VPC resolver. Flow logs are stored in CloudWatch Logs or S3, not by the gateway itself.

CLF-C02 Question 5 of 6

What is the scope of a VPC and a subnet?

Answer: A — A VPC belongs to one Region; a subnet lives in one Availability Zone

A VPC is a Regional construct, and each subnet within it sits in exactly one Availability Zone — which is why spreading subnets across AZs is how you build for resilience. Why not the others: neither a VPC nor a subnet is global (IAM is the global one candidates confuse this with). And the scopes are not reversed: the VPC is the wider, Region-level boundary; the subnet is the narrower, AZ-level one.

CLF-C02 Question 6 of 6

A company runs instances in a private subnet that must download software updates from the internet, but must not be reachable from the internet. What enables this?

Answer: A — A NAT gateway

A NAT gateway lets instances in a private subnet make outbound connections to the internet while blocking unsolicited inbound connections — exactly the 'updates out, nobody in' requirement. Why not the others: giving the subnet a direct internet gateway route would make it public and reachable. A security group controls allowed traffic but cannot by itself provide outbound internet for a private subnet. A second VPC solves nothing here.

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 6 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). VPC and networking sit in the Cloud Technology and Services domain, the largest at 34%, but at foundational level the networking is deliberately shallow — concepts, not configuration.
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.
How much networking do I really need for CLF-C02?
Little, but precisely. Know what a VPC and a subnet are, what makes a subnet public or private, the difference between a security group and a network ACL, and what an internet gateway and a NAT gateway do. You will not configure routing tables or CIDR ranges by hand.
What is the one distinction people get wrong?
Security group versus network ACL. The security group is stateful and wraps the instance; the network ACL is stateless and sits at the subnet edge. If you can state that in one sentence, you have the networking marks the exam actually cares about.

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.