Multiple choice technology architecture

What are the different scopes available?

  1. page, request & session

  2. page, request & application.

  3. page, request, session & application.

  4. request, session & application.

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

JSP provides four scopes: page scope (default, accessible only within the page), request scope (accessible during the current request), session scope (accessible across multiple requests from the same user session), and application scope (globally accessible across the entire application). Option C correctly lists all four scopes.