Multiple choice technology

Session management can be achieved by using the following..

  1. Cookies

  2. URL rewriting

  3. Hidden form fields

  4. All of the above

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

Session management in web applications can use all three methods: cookies (store session ID on client), URL rewriting (append session ID to URLs), and hidden form fields (pass session ID in forms). Each has trade-offs in security and usability. Using multiple methods provides fallback options.