Multiple choice technology web technology

What ASP.NET object encapsulates the state of the client and the browser?

  1. Application object.

  2. Session object.

  3. Response object.

  4. Request object.

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

The ASP.NET Session object encapsulates and maintains the state of a specific client/browser across multiple HTTP requests. Each user session stores unique data (like login state, cart items) keyed by session ID. Application stores global shared state, Request handles incoming HTTP data, Response sends output.