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 in web applications refers to data and context that exists only for the duration of processing a single HTTP request. Once the response is sent, the request scope data is destroyed. Session scope persists across multiple requests from the same user, and application scope persists until server restart.