Multiple choice technology

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 scope options for storing and sharing data: page (default, most limited), request, session, and application (broadest). Page scope only lasts for the current page, request scope lasts for one HTTP request, session scope persists across multiple requests from the same user, and application scope is shared across all users and sessions.