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.
Question
Which HTTP response code indicates an OK status?
Options
- A302
- B404
- C200
- D100
How the community answered
(58 responses)- A3% (2)
- B2% (1)
- C93% (54)
- D2% (1)
Why each option
HTTP status code 200 OK is the standard success response indicating the server received, understood, and successfully processed the request.
302 Found is a redirection status code indicating the requested resource has been temporarily moved to a different URI.
404 Not Found is a client error indicating the server could not locate the resource at the requested URI.
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.
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
Community Discussion
No community discussion yet for this question.