- A
Network Load Balancer (NLB)
Why wrong: NLB operates at Layer 4 (transport) and routes based on TCP/UDP connections — it doesn't inspect HTTP content for content-based routing.
- B
Application Load Balancer (ALB)
ALB operates at Layer 7 and supports content-based routing rules for URLs, hostnames, headers, and methods — ideal for microservices and container-based architectures.
- C
Gateway Load Balancer (GWLB)
Why wrong: Gateway Load Balancer routes traffic through third-party network appliances (firewalls, IDS/IPS) — it's not for web application content routing.
- D
Classic Load Balancer
Why wrong: Classic Load Balancer is legacy and supports limited Layer 7 features — ALB is the current recommendation for HTTP/HTTPS content-based routing.
Quick Answer
The answer is the Application Load Balancer (ALB). This is correct because the ALB operates at Layer 7 of the OSI model, allowing it to inspect and route HTTP/HTTPS traffic based on content such as URL path, hostname, and HTTP headers, enabling advanced content-based routing rules like path-based or host-based routing. On the AWS Certified Cloud Practitioner CLF-C02 exam, this question tests your understanding of the key difference between load balancer types: the ALB handles application-level routing, while the Network Load Balancer (NLB) handles Layer 4 TCP/UDP traffic. A common trap is confusing the ALB with the Classic Load Balancer, which lacks these content-based routing capabilities. To remember, think of the ALB as the “application-aware” balancer that reads the URL and headers, while the NLB is the “network-speed” balancer that only sees IP and port.
CLF-C02 Cloud Technology and Services Practice Question
This CLF-C02 practice question tests your understanding of cloud technology and services. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Which type of Elastic Load Balancer routes HTTP/HTTPS traffic based on content such as URL path, hostname, and HTTP headers, enabling advanced request routing rules?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Application Load Balancer (ALB)
The Application Load Balancer (ALB) operates at Layer 7 of the OSI model and can route HTTP/HTTPS traffic based on request-level attributes such as URL path, hostname, HTTP headers, and query strings. This enables advanced routing rules like path-based routing (e.g., /api to one target group, /images to another) and host-based routing (e.g., app1.example.com vs app2.example.com). ALB also supports features like WebSocket, HTTP/2, and AWS WAF integration, making it the correct choice for content-based routing.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Network Load Balancer (NLB)
- ✓
Application Load Balancer (ALB)
Why this is correct
ALB operates at Layer 7 and supports content-based routing rules for URLs, hostnames, headers, and methods — ideal for microservices and container-based architectures.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Gateway Load Balancer (GWLB)
Why it's wrong here
Gateway Load Balancer routes traffic through third-party network appliances (firewalls, IDS/IPS) — it's not for web application content routing.
- ✗
Classic Load Balancer
Why it's wrong here
Classic Load Balancer is legacy and supports limited Layer 7 features — ALB is the current recommendation for HTTP/HTTPS content-based routing.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse the Network Load Balancer (NLB) with the Application Load Balancer (ALB) because both can handle HTTPS traffic, but NLB cannot inspect HTTP/HTTPS content for routing decisions—it only forwards TCP traffic, making ALB the only correct answer for content-based routing.
Detailed technical explanation
How to think about this question
Under the hood, ALB uses listener rules that are evaluated in priority order, allowing you to define conditions based on path patterns (e.g., /user/*), host headers (e.g., *.example.com), HTTP methods, query strings, and source IPs. A subtle behavior is that ALB terminates the client's TLS connection and then establishes a new TLS connection to the target, which means you can offload SSL/TLS processing and inspect decrypted traffic for routing decisions. In a real-world microservices architecture, ALB enables you to route requests to different services (e.g., /orders to an order service, /payments to a payment service) without needing a separate load balancer per service.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A healthcare organisation deploys an application with a public-facing web tier and a private database tier. The database subnet has no public IP and only accepts connections from the web tier's security group. Questions like this test whether you can design cloud network isolation using VNets/VPCs, subnets, and security group rules.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Cloud Technology and Services — study guide chapter
Learn the concepts, then practise the questions
- →
Cloud Technology and Services practice questions
Targeted practice on this topic area only
- →
All CLF-C02 questions
1,024 questions across all exam domains
- →
AWS Certified Cloud Practitioner CLF-C02 study guide
Full concept coverage aligned to exam objectives
- →
CLF-C02 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related CLF-C02 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Cloud Concepts practice questions
Practise CLF-C02 questions linked to Cloud Concepts.
Security and Compliance practice questions
Practise CLF-C02 questions linked to Security and Compliance.
Cloud Technology and Services practice questions
Practise CLF-C02 questions linked to Cloud Technology and Services.
Billing, Pricing, and Support practice questions
Practise CLF-C02 questions linked to Billing, Pricing, and Support.
AWS shared responsibility model practice questions
Practise CLF-C02 questions linked to AWS shared responsibility model.
AWS IAM practice questions
Practise CLF-C02 questions linked to AWS IAM.
AWS pricing practice questions
Practise CLF-C02 questions linked to AWS pricing.
AWS support plans practice questions
Practise CLF-C02 questions linked to AWS support plans.
AWS S3 practice questions
Practise CLF-C02 questions linked to AWS S3.
AWS EC2 practice questions
Practise CLF-C02 questions linked to AWS EC2.
Practice this exam
Start a free CLF-C02 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this CLF-C02 question test?
Cloud Technology and Services — This question tests Cloud Technology and Services — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Application Load Balancer (ALB) — The Application Load Balancer (ALB) operates at Layer 7 of the OSI model and can route HTTP/HTTPS traffic based on request-level attributes such as URL path, hostname, HTTP headers, and query strings. This enables advanced routing rules like path-based routing (e.g., /api to one target group, /images to another) and host-based routing (e.g., app1.example.com vs app2.example.com). ALB also supports features like WebSocket, HTTP/2, and AWS WAF integration, making it the correct choice for content-based routing.
What should I do if I get this CLF-C02 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Keep practising
More CLF-C02 practice questions
- A company publishes a message each time a new product is added to its catalogue. Three services need to receive this mes…
- A media company stores frequently accessed video thumbnails in Amazon S3. The thumbnails are read multiple times every d…
- A company needs a service to translate domain names (like www.example.com) into IP addresses, check the health of their…
- A startup runs an application on AWS and receives a monthly bill that charges exactly for the number of compute hours us…
- A financial institution runs its core banking application on-premises due to regulatory requirements. It has connected i…
- A company wants to run a MySQL database in AWS without managing database software installation, applying patches, settin…
Last reviewed: Jun 11, 2026
This CLF-C02 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CLF-C02 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.