nerdexam
F5

101 · Question #569

What does the 5XX group of HTTP status codes indicate?

The correct answer is D. Server Error. HTTP status codes are grouped by their first digit, with the 5XX range specifically indicating errors that originate from the server side.

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

Question

What does the 5XX group of HTTP status codes indicate?

Options

  • ARedirection
  • BSuccessful
  • CClient Error
  • DServer Error

How the community answered

(40 responses)
  • A
    3% (1)
  • B
    5% (2)
  • C
    3% (1)
  • D
    90% (36)

Why each option

HTTP status codes are grouped by their first digit, with the 5XX range specifically indicating errors that originate from the server side.

ARedirection

3XX codes indicate redirection, meaning the client must take additional action such as following a new URL to complete the request.

BSuccessful

2XX codes indicate successful responses, such as 200 OK, where the request was received and fulfilled by the server.

CClient Error

4XX codes indicate client errors, such as 404 Not Found or 400 Bad Request, where the fault lies in the client's request.

DServer ErrorCorrect

The 5XX class of HTTP status codes indicates that the server encountered an error or is incapable of fulfilling a valid request. Examples include 500 Internal Server Error and 503 Service Unavailable, both of which reflect failures in server-side processing rather than problems with the client request.

Concept tested: HTTP status code range classifications

Source: https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml

Topics

#HTTP status codes#5XX#server error#HTTP

Community Discussion

No community discussion yet for this question.

Full 101 Practice