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

In web applications, Session Scope stores data specific to a user session throughout their interaction with the application. Page Scope is per individual page, Request Scope lasts only for a single HTTP request, and Application Scope is global across all users and sessions. Session scope maintains user-specific state (like cart contents or login status) across multiple requests.