How many copies of a JSP page can be in memory at a time?
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.