Multiple choice technology architecture

Servlets are multi threaded

  1. True

  2. False

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

Servlet containers typically use a thread pool where each request is handled by a separate thread. This makes servlets inherently multi-threaded, requiring careful attention to thread safety when handling shared resources.