nerdexam
F5

101 · Question #547

What does the HTTP status code 404 mean?

The correct answer is D. Not found. HTTP status codes are standardized responses indicating the result of a client request; 404 specifically signals that the requested resource does not exist at the given URI.

Section 1: OSI Model, Network, and Application Delivery Basics

Question

What does the HTTP status code 404 mean?

Options

  • ANot Acceptable
  • BForbidden
  • CRequest Timeout
  • DNot found

How the community answered

(34 responses)
  • A
    9% (3)
  • B
    3% (1)
  • C
    3% (1)
  • D
    85% (29)

Why each option

HTTP status codes are standardized responses indicating the result of a client request; 404 specifically signals that the requested resource does not exist at the given URI.

ANot Acceptable

Not Acceptable corresponds to HTTP 406, returned when the server cannot produce a response matching the content type specified in the request Accept headers.

BForbidden

Forbidden corresponds to HTTP 403, returned when the server understands the request but refuses to authorize it because the client lacks the necessary permissions.

CRequest Timeout

Request Timeout corresponds to HTTP 408, returned when the server closes a connection because the client did not send a complete request within the server's allotted wait time.

DNot foundCorrect

HTTP 404 Not Found is the response code defined in RFC 7231 returned when the server cannot locate the resource identified by the request URI. The resource may have been deleted, moved without a redirect, or the URL may simply be incorrect. It is one of the most fundamental HTTP error codes and distinguishes a missing resource from other error conditions such as authorization or server failures.

Concept tested: HTTP status codes and their specific meanings

Source: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404

Topics

#HTTP status codes#HTTP 404#web fundamentals

Community Discussion

No community discussion yet for this question.

Full 101 Practice