Multiple choice technology

Choose correct scopes into JSP:-

  1. page, request, session, application

  2. Page, response, session, application

  3. Page, request, response, session

  4. None

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

JSP has four standard scopes: page (default), request, session, and application. Response is not a scope - it's an object for sending data back to the client. Scopes determine the lifespan and visibility of data.