Which Scope contain data specific to a user session?
-
Page Scope
-
Session Scope
-
Request Scope
-
Application Scope
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.