Multiple choice technology architecture

Where we need to store the data to get across the application?

  1. Request

  2. Cookie

  3. Application context

  4. Global Session

Reveal answer Fill a bubble to check yourself
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.