nerdexam
F5

101 · Question #541

Which HTTP response code indicates an OK status?

The correct answer is C. 200. HTTP status code 200 OK is the standard success response indicating the server received, understood, and successfully processed the request.

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

Question

Which HTTP response code indicates an OK status?

Options

  • A302
  • B404
  • C200
  • D100

How the community answered

(58 responses)
  • A
    3% (2)
  • B
    2% (1)
  • C
    93% (54)
  • D
    2% (1)

Why each option

HTTP status code 200 OK is the standard success response indicating the server received, understood, and successfully processed the request.

A302

302 Found is a redirection status code indicating the requested resource has been temporarily moved to a different URI.

B404

404 Not Found is a client error indicating the server could not locate the resource at the requested URI.

C200Correct

200 OK is defined in RFC 9110 as the standard success status code for HTTP, confirming the request was fulfilled without error. The specific meaning of success varies by method - for GET it means the resource was retrieved, for POST it means the action was processed - but in all cases it signals no error occurred on either the client or server side.

D100

100 Continue is an informational status code telling the client it may proceed to send the remainder of the request body.

Concept tested: HTTP 2xx success status codes

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

Topics

#HTTP status codes#HTTP response#web fundamentals

Community Discussion

No community discussion yet for this question.

Full 101 Practice