nerdexam
F5

101 · Question #621

What is a primary benefit of employing a load balancer to manage traffic for an application?

The correct answer is C. It allows easy scaling up of the application. A primary benefit of a load balancer is enabling horizontal scalability, allowing additional server instances to be added behind the load balancer to handle increased demand.

Section 3: Load Balancing and High Availability Basics

Question

What is a primary benefit of employing a load balancer to manage traffic for an application?

Options

  • AIt reduces the number of client connections
  • BIt provides a more uniform client experience
  • CIt allows easy scaling up of the application
  • DIt Reduces dropped connections

How the community answered

(38 responses)
  • A
    5% (2)
  • B
    3% (1)
  • C
    92% (35)

Why each option

A primary benefit of a load balancer is enabling horizontal scalability, allowing additional server instances to be added behind the load balancer to handle increased demand.

AIt reduces the number of client connections

A load balancer distributes existing client connections across multiple servers but does not reduce the total number of client connections - each client still establishes its own connection.

BIt provides a more uniform client experience

While load balancers can improve consistency through session persistence and health checks, providing a uniform experience is a secondary effect, not the primary architectural benefit.

CIt allows easy scaling up of the applicationCorrect

A load balancer decouples the client-facing endpoint from the backend server instances, meaning new servers can be added to the pool without any client reconfiguration or downtime. This horizontal scaling capability is the foundational architectural benefit that load balancers provide, allowing applications to grow capacity incrementally as demand increases.

DIt Reduces dropped connections

Reducing dropped connections is a reliability side effect of removing single points of failure, but it is not the primary or defining benefit that distinguishes load balancing as a technology.

Concept tested: Load balancer primary benefit - horizontal application scaling

Source: https://learn.microsoft.com/en-us/azure/architecture/guide/technology-choices/load-balancing-overview

Topics

#load balancing#scalability#application delivery#high availability

Community Discussion

No community discussion yet for this question.

Full 101 Practice