Auto Scaling and Elastic Load Balancing are a pair, and the exam tests them as one idea: making an application elastic (capacity follows demand) and highly available (it survives failures). Learn what each does and how they combine, and this is reliable scoring in the biggest domain.
Two jobs, one goal
- EC2 Auto Scaling manages how many instances you run, adding them under load and removing them when demand falls. This gives elasticity and a real cost benefit: you pay only for the capacity you actually need, not for idle over-provisioned servers.
- Elastic Load Balancing (ELB) distributes incoming traffic across the instances, and performs health checks — when an instance fails one, the load balancer simply stops routing to it and uses the healthy ones.
Auto Scaling changes the size of the fleet; the load balancer spreads traffic across it. Neither does the other’s job, and the exam likes to reverse them in a distractor.
Why they give high availability
Put the instances in an Auto Scaling group spread across multiple Availability Zones, behind a load balancer, and the failure of an instance — or an entire zone — no longer takes the application down. Traffic routes to healthy instances elsewhere. That is high availability, built from ordinary parts.
Horizontal vs vertical scaling
One concept underneath: Auto Scaling adds more instances (horizontal scaling, or scaling out), rather than making a single instance bigger (vertical scaling, or scaling up). The cloud generally favours scaling out, because many smaller instances behind a load balancer are both elastic and resilient.
How to use the questions below
Answer each one before you reveal the explanation, and when you miss, read past the correct letter to why the other three fail. The distractors usually swap the two roles, or claim a benefit (cost, encryption) that belongs elsewhere. Keeping “scale the fleet” and “balance the traffic” distinct is the whole skill, and the reasoning below drills it. This pairs naturally with Route 53 for routing at the DNS level.
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.