Multiple choice technology

A servlet can handle multiple requests concurrently.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

A single servlet instance typically handles multiple concurrent requests using a multi-threaded model. The container creates one instance (or a pool) and dispatches multiple threads to the service() method simultaneously. Each thread handles one request, allowing efficient resource utilization. Developers must ensure thread-safety in servlet code since instance variables are shared across threads.