Where we need to store the data to get across the application?
-
Request
-
Cookie
-
Application context
-
Global Session
D
Correct answer
Explanation
Global Session provides application-wide data persistence across all pages and requests for a specific user. Request scope only lasts for a single HTTP request, Cookie has size limitations and security concerns, and Application context is shared across all users rather than being session-specific.