nerdexam
F5

101 · Question #392

What is the main cause of high latency in a Web application?

The correct answer is B. The distance between the client and Web server. Network propagation delay caused by physical distance between the client and server is the primary factor driving high latency in web applications.

Section 5: Application Delivery Basics

Question

What is the main cause of high latency in a Web application?

Options

  • AThe version, the client's browser
  • BThe distance between the client and Web server
  • CThe number of CPUs on the Web server
  • DThe size of the objects on the page

How the community answered

(16 responses)
  • A
    6% (1)
  • B
    88% (14)
  • D
    6% (1)

Why each option

Network propagation delay caused by physical distance between the client and server is the primary factor driving high latency in web applications.

AThe version, the client's browser

The client's browser version can affect rendering and script execution speed but does not cause network-level propagation delay, which is determined by physical distance.

BThe distance between the client and Web serverCorrect

Latency is governed by propagation delay - the time required for a signal to travel the physical path between two endpoints - which increases directly with geographic distance. A greater distance between the client and web server raises the round-trip time (RTT), creating noticeable latency regardless of server processing speed or available bandwidth. This is the foundational reason content delivery networks place servers geographically closer to end users.

CThe number of CPUs on the Web server

The number of CPUs on the web server affects server-side processing throughput but is not the main cause of end-to-end latency, which is dominated by the time data spends traveling the network path.

DThe size of the objects on the page

Large page object sizes increase the amount of data transferred and can reduce effective throughput, but this is a bandwidth constraint rather than the primary cause of latency, which specifically refers to round-trip signal delay.

Concept tested: Network propagation delay as the primary cause of web latency

Source: https://developer.mozilla.org/en-US/docs/Web/Performance/Guides/Understanding_latency

Topics

#web application latency#client-server distance#performance#network delay

Community Discussion

No community discussion yet for this question.

Full 101 Practice