Multiple choice

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

The JSP specification maintains a single instance of each JSP page in memory, with multiple threads handling concurrent requests. This design is memory-efficient and thread-safe. Options B and C are incorrect because the specification doesn't mandate multiple copies, and D is wrong because the instance is shared, not unlimited.