How is user session maintained in http based protocol applications ?
-
Http Cookies
-
Memory Flags
-
http request ID
-
http Request Parameters
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.