nerdexam
Cisco

350-401 · Question #1151

Refer to the exhibit. What does the response "204 No Content" mean for the REST API request?

The correct answer is A. Interface loopback 100 is removed from the configuration.. The '204 No Content' HTTP response indicates that the server successfully processed the request, but there is no content to return in the response body.

Submitted by kevin_r· Mar 6, 2026Automation

Question

Refer to the exhibit. What does the response "204 No Content" mean for the REST API request?

Options

  • AInterface loopback 100 is removed from the configuration.
  • BInterface loopback 100 is not removed from the configuration.
  • CInterface loopback 100 is not found in the configuration.
  • DThe DELETE method is not supported.

How the community answered

(58 responses)
  • A
    91% (53)
  • B
    2% (1)
  • C
    5% (3)
  • D
    2% (1)

Why each option

The '204 No Content' HTTP response indicates that the server successfully processed the request, but there is no content to return in the response body.

AInterface loopback 100 is removed from the configuration.Correct

An HTTP 204 No Content response code signifies that the server successfully fulfilled the request and there is nothing to return in the response body. This is a common and appropriate status for a successful `DELETE` operation where no confirmation data beyond success is needed, implying the interface was successfully removed.

BInterface loopback 100 is not removed from the configuration.

A '204 No Content' status explicitly means the request was successful, which directly contradicts the statement that the interface was not removed.

CInterface loopback 100 is not found in the configuration.

If the interface was not found, the server would typically return an HTTP 404 Not Found error, indicating that the resource could not be located.

DThe DELETE method is not supported.

If the DELETE method was not supported for the resource, the server would likely return an HTTP 405 Method Not Allowed error, indicating that the request method is not supported by the target resource.

Concept tested: HTTP Status Code 204

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

Topics

#REST API#HTTP Status Codes#204 No Content#API DELETE

Community Discussion

No community discussion yet for this question.

Full 350-401 Practice