Multiple choice technology web technology

___________ Error is returned to any browser attempting to directly request a configuration file.

  1. HttpAccess 404

  2. HttpAccess 405

  3. HttpAccess 403

  4. HttpAccess 406

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

HTTP 403 (Forbidden) is returned when a browser attempts to directly access a configuration file like Web.config or Machine.config. This is a security feature to prevent exposing sensitive configuration data. 404 is Not Found, 405 is Method Not Allowed, and 406 is Not Acceptable - none of these apply to config file access restrictions.