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 is a stateless protocol, so session management requires client-side persistence. Cookies are the standard mechanism - the server sends a Set-Cookie header with a session identifier, and the client returns it on subsequent requests. Memory flags, request IDs, and request parameters don't persist across requests.