Multiple choice java

How many copies of a JSP page can be in memory at a time?

  1. One

  2. Two

  3. Three

  4. Unlimited

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

By default, a JSP container loads only one instance of the generated servlet into memory. Multiple concurrent requests are handled by multiple threads executing the same instance's service method. This model is efficient for resource management, though SingleThreadModel (now deprecated) could change this behavior.