200-901 · Question #210
200-901 Question #210: Real Exam Question with Answer & Explanation
The correct answer is B: 204. {"question_number": 3, "correct_answer": "B", "explanation": "HTTP status code 204 (No Content) is returned when the server successfully processed the request but has no content to return in the response body. This is commonly used with DELETE or PUT operations where the action s
Question
Which HTTP response code should be returned when the request is completed, but there is no content to send for the request?
Options
- A100
- B204
- C302
- D402
Explanation
{"question_number": 3, "correct_answer": "B", "explanation": "HTTP status code 204 (No Content) is returned when the server successfully processed the request but has no content to return in the response body. This is commonly used with DELETE or PUT operations where the action succeeds but there is nothing to send back. 100 (A) is 'Continue,' an informational response indicating the client should proceed. 302 (C) is 'Found,' a redirect response. 402 (D) is 'Payment Required,' a client error response indicating a payment is needed.", "generated_by": "claude-sonnet", "llm_judge_score": 4}
Topics
Community Discussion
No community discussion yet for this question.