Multiple choice general knowledge science & technology

By default a servlet is multi-threaded

  1. True

  2. False

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

By default, servlet containers use a single servlet instance to handle multiple requests concurrently, each in its own thread. This multithreaded model improves performance and resource utilization. To make a servlet thread-safe (single-threaded), you must implement the SingleThreadModel interface.