200-901 · Question #189
Which HTTP response status code means "Forbidden"?
The correct answer is C. 403. HTTP 403 Forbidden means the server understood the request but refuses to authorize it - the client is authenticated but lacks permission. Key distinctions: 401 Unauthorized means the client must authenticate first (unauthenticated). 500 Internal Server Error indicates a server-s
Question
Which HTTP response status code means "Forbidden"?
Options
- A500
- B401
- C403
- D502
How the community answered
(51 responses)- A2% (1)
- B4% (2)
- C94% (48)
Explanation
HTTP 403 Forbidden means the server understood the request but refuses to authorize it - the client is authenticated but lacks permission. Key distinctions: 401 Unauthorized means the client must authenticate first (unauthenticated). 500 Internal Server Error indicates a server-side failure. 502 Bad Gateway means a server acting as a gateway received an invalid response from an upstream server. Memorize the 4xx client error codes: 400 Bad Request, 401 Unauthorized, 403 Forbidden, 404 Not Found.
Topics
Community Discussion
No community discussion yet for this question.