nerdexam
Cisco

200-301 · Question #1238

Under the CRUD model, which two HTTP methods support the UPDATE operation? (Choose two.)

The correct answer is A. PATCH E. PUT. This question asks to identify the two HTTP methods that correspond to the UPDATE operation within the CRUD model.

Submitted by dimitri_ru· Mar 5, 2026Automation and Programmability

Question

Under the CRUD model, which two HTTP methods support the UPDATE operation? (Choose two.)

Options

  • APATCH
  • BDELETE
  • CGET
  • DPOST
  • EPUT

How the community answered

(15 responses)
  • A
    87% (13)
  • B
    7% (1)
  • D
    7% (1)

Why each option

This question asks to identify the two HTTP methods that correspond to the UPDATE operation within the CRUD model.

APATCHCorrect

The PATCH HTTP method is used to apply partial modifications to a resource, which is a form of updating. It sends only the changes needed, rather than the entire resource representation.

BDELETE

The DELETE HTTP method is used to remove a specified resource, which corresponds to the 'Delete' operation in CRUD.

CGET

The GET HTTP method is used to retrieve a representation of a resource, corresponding to the 'Read' operation in CRUD.

DPOST

The POST HTTP method is primarily used to create new resources, corresponding to the 'Create' operation in CRUD, though it can sometimes be used for updates if the resource identifier is not known beforehand.

EPUTCorrect

The PUT HTTP method is used to completely replace a resource with a new representation or to create a resource if it doesn't exist, serving as a full update operation.

Concept tested: REST API CRUD operations (HTTP methods)

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

Topics

#REST API#CRUD operations#HTTP methods#PUT PATCH

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice