Servlets are multi threaded
A
Correct answer
Explanation
Servlets use a multi-threaded model where a single servlet instance handles multiple requests concurrently. Each request runs in a separate thread, sharing the same servlet instance, which makes resource-efficient but requires thread-safe coding.