The one-line verdict: match the service to the layer and the scope. Layer 4 versus layer 7 tells you whether it reads the request; regional versus global tells you whether it spreads traffic inside a region or chooses a region. Get those two axes right and every AZ-900 load-balancing question falls into place.
Four services, two questions each
Azure has four traffic-distribution services, and beginners blur them because they all “balance load.” The diagram above sorts them on the two axes that actually separate them — layer (how deep it looks) and scope (regional or global).
- Azure Load Balancer — layer 4, TCP/UDP. It spreads incoming traffic evenly across VMs inside one region, deciding on IP and port alone. It never reads the URL, which makes it fast and protocol-agnostic.
- Application Gateway — layer 7, HTTP/HTTPS. Still regional, but it reads the request, so it can route by URL path or hostname and add a built-in web application firewall (WAF).
- Azure Front Door — global, layer 7. A single global entry point that terminates HTTPS, caches content like a CDN, runs a WAF at the edge, and routes each user to the nearest healthy region.
- Traffic Manager — global, DNS-based. It routes by geography, priority, or performance and can point to any endpoint, but it only returns a DNS answer — the traffic itself never passes through it.
Read the layer
Layer 4 versus layer 7 is the first split the exam tests. A layer-4 service (Load Balancer) sees only IP and port, so it works for any protocol — a database port, a game server, a custom TCP service. A layer-7 service (Application Gateway, Front Door) reads the HTTP request, so it can make decisions on the path (/api versus /images), the hostname, or headers, and it can defend the app with a WAF. If a scenario mentions URLs, paths, hostnames, or a firewall for web traffic, you are in layer-7 territory.
Read the scope
The second split is regional versus global. Load Balancer and Application Gateway live inside one region — they spread traffic across the VMs there. Front Door and Traffic Manager are global — they decide which region a user should reach. That is why real multi-region designs pair them: a global service picks the region, and a regional load balancer spreads the traffic once inside it. The exam almost always slips in a “both” answer for exactly this pattern.
Front Door and Traffic Manager are the pair students confuse most. Both route globally, but Front Door is a layer-7 HTTP edge with caching and WAF, while Traffic Manager is pure DNS that can route any protocol to any endpoint. Front Door carries and accelerates your web traffic; Traffic Manager just answers the DNS lookup and steps aside.
The shortcut to carry in
Answer each question below before revealing the explanation, and when you miss, read past the correct option to why the distractors are wrong — they are usually the right tool aimed at the wrong layer or scope. One hook does most of the work:
Layer 4 = IP + port. Layer 7 = reads the URL. Regional = spread inside; global = pick the region.
The real exam mixes multiple-choice, true/false, and drag-and-drop, but the reasoning is the same every time. For the network foundations underneath these services, see virtual network and subnets, the wider architecture and services domain, and hybrid connectivity.
Updated for AZ-900 (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.