Multiple choice technology programming languages

You need to store state data that is accessible to any user who connects to your Web application. Which object should you use?

  1. Session

  2. Application

  3. Response.Cookies

  4. Response.ViewState

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

Application state stores data that is accessible to all users across the entire application - it's global to the application. Session state is user-specific and isolated per user session. Cookies are stored on the client-side browser. ViewState is page-specific for maintaining state across postbacks within a single page. For data that must be accessible to ANY user regardless of who they are, Application state is the correct choice.