Cloud Interview Question

What is a load balancer?

Updated 2026-07-10 · Beginner friendly
Quick answer

A load balancer is a component that spreads incoming traffic across multiple servers so no single one gets overwhelmed. If you run several copies of your app, the load balancer decides which server handles each request. This improves reliability, because if one server fails, traffic simply goes to the healthy ones.

What it does

It sits in front of your servers as the single entry point. Users hit the load balancer, and it forwards each request to one of the backend servers, often using a simple rule like round robin.

In the interview

Connect the load balancer to statelessness. Mentioning that it works best when servers are stateless, so any server can handle any request, ties two concepts together and impresses interviewers.

Want the full Cloud guide?

Read every Cloud concept with notes, diagrams, and code in one place. Track your progress as you go.

Open the Cloud guide All Cloud questions