Multiple choice .net asp

Where is the default Session data is stored in ASP.Net?

  1. InProcess

  2. StateServer

  3. Session Object

  4. al of the above

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

By default, ASP.NET stores session data in the InProcess mode, which keeps session data in the memory of the ASP.NET worker process. StateServer and SQL Server are alternative storage modes that need to be explicitly configured in web.config for web farm scenarios or when persistence across process restarts is needed.