What is a session?
-
Session is a cookie
-
Session is basically is the duration between user login and logout time
-
Session is a server side variable
-
Session usually is non persistent cookie
Reveal answer
Fill a bubble to check yourself
B
Correct answer
Explanation
A session represents the duration of a user's interaction with an application, typically spanning from login to logout. During this period, the server maintains user-specific state and data. While sessions are often implemented using cookies or server-side variables, the fundamental concept is the time duration itself, not the implementation mechanism. Sessions are generally persistent across multiple requests within the same login period.