Multiple choice technology security

How long does a request scope exist?

  1. The length of the User's Session

  2. The length of a single HTTP response

  3. The length of a single HTTP request

  4. Until the server is rebooted

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

Request scope exists only for the duration of processing a single HTTP request from when it's received until the response is sent. Session scope spans multiple requests during a user's visit, and application scope persists across all users until server restart.