Multiple choice .net

An Application variable is created:

  1. when the application is first placed on a web server.

  2. when the web server is first started.

  3. when the first client requests a URL resource.

  4. every time a client requests a URL resource.

  5. every time a new client interacts with the web application.

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

An Application variable is initialized when the first user requests any resource from the web application. It is not created when the code is placed on the server or when the server starts, but rather upon the first actual execution of the application's lifecycle.