Multiple choice technology programming languages

Which method do you use to expllicitly to kill a user session?

  1. session.clear()

  2. session.dispose()

  3. Session.Abandon

  4. None

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

Session.Abandon() explicitly ends and cleans up the current user session. Session.Clear() empties session data but keeps the session alive, and Session.Dispose() isn't a standard session method.