What ASP.NET object encapsulates the state of the client and the browser?
-
Application object.
-
Session object.
-
Response object.
-
Request object.
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.