Multiple choice technology web technology

which object holds the data that can be shared by all users ?

  1. request

  2. page

  3. application

  4. session

  5. session store

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

The application object holds data that is shared by all users across the entire application scope. Session objects hold data per user session, request objects hold data for a single HTTP request, and page objects are scoped to individual page instances.