Multiple choice technology architecture

How is user session maintained in http based protocol applications ?

  1. Http Cookies

  2. Memory Flags

  3. http request ID

  4. http Request Parameters

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

HTTP cookies are the standard mechanism for maintaining user sessions in web applications. The server sends a session identifier to the client's browser, which stores it as a cookie. The browser automatically sends this cookie with subsequent requests, allowing the server to identify and maintain the user's session state across multiple HTTP requests.