Multiple choice technology security

Which Scope contain data specific to a user session?

  1. Page Scope

  2. Session Scope

  3. Request Scope

  4. Application Scope

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

Session scope specifically stores data tied to a single user's session across multiple requests. Page scope is for single-page data, request scope lasts only for one HTTP request, and application scope is shared across all users. Only session scope maintains user-specific state throughout their interaction with the application.