nerdexam
Exams101Questions#367
F5

101 · Question #367

101 Question #367: Real Exam Question with Answer & Explanation

The correct answer is B: The time it takes to deliver the HTTP response over the network.. Network delivery time and server-side response generation are the two primary bottlenecks most often responsible for poor web application performance.

Question

Which two of the following factors are often responsible for poor Web application performance? (Choose two.)

Options

  • AThe time it takes to generate an HTTP request.
  • BThe time it takes to deliver the HTTP response over the network.
  • CThe time it takes to display the HTTP response in the browser.
  • DThe time it takes to generate the HTTP response.

Explanation

Network delivery time and server-side response generation are the two primary bottlenecks most often responsible for poor web application performance.

Common mistakes.

  • A. HTTP request generation on the client side is a fast, local CPU operation and is rarely a meaningful bottleneck in overall web application performance.
  • C. Browser rendering and display time, while measurable, is generally not considered a primary or dominant factor in poor web application performance when compared to network and server-side delays.

Concept tested. Web application performance bottleneck identification

Reference. https://developer.mozilla.org/en-US/docs/Web/Performance/How_browsers_work

Community Discussion

No community discussion yet for this question.

Full 101 Practice