Multiple choice technology programming languages

Which of the following aren't the methods for state/session management in the context of Servlets?

  1. Http Redirects

  2. Hidden Variables

  3. Cookies

  4. Rewritten URLs

  5. Using HttpSession Interface

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

The question asks which option is NOT a session management method. HTTP Redirects (sendRedirect) is not considered a core session management technique; it's a redirection mechanism. The standard session management methods are Cookies, Hidden Form Fields, URL Rewriting, and HttpSession.