Multiple choice .net

Which server-side technique is available in ASP.NET?

  1. Application states

  2. Session states

  3. Database support

  4. Both a and b.

  5. All of the above.

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

ASP.NET provides both Application State and Session State as server-side state management techniques. Application State stores data accessible to all users across the application, while Session State stores user-specific data for individual sessions. Database support is a data persistence mechanism, not a server-side state management technique, so option D is correct.