Multiple choice technology web technology

Which of the following can be used to store client side user state information while avoiding any impact due to the users web browser configuration ?

  1. Cookies

  2. URL rewriting

  3. HttpSessions

  4. Hidden tags

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

HttpSession stores state on the server side, making it independent of client browser settings. The session ID can be transmitted via cookies or URL rewriting as a fallback, ensuring reliable state management.