nerdexam
Cisco

200-301 · Question #1563

Which CRUD operation corresponds to me HTTP GET method?

The correct answer is D. read. The HTTP GET method is used to retrieve data from a server, which directly corresponds to the 'Read' operation in CRUD.

Submitted by certguy· Mar 5, 2026Automation and Programmability

Question

Which CRUD operation corresponds to me HTTP GET method?

Options

  • Adelete
  • Bcreate
  • Cupdate
  • Dread

How the community answered

(52 responses)
  • A
    6% (3)
  • B
    2% (1)
  • C
    4% (2)
  • D
    88% (46)

Why each option

The HTTP GET method is used to retrieve data from a server, which directly corresponds to the 'Read' operation in CRUD.

Adelete

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

Bcreate

The HTTP POST method is typically used to submit new data to a specified resource, corresponding to the 'Create' CRUD operation.

Cupdate

The HTTP PUT or PATCH methods are typically used to modify an existing resource, corresponding to the 'Update' CRUD operation.

DreadCorrect

The HTTP GET method is designed to request a representation of the specified resource and retrieve data from a server, aligning precisely with the 'Read' operation in the CRUD paradigm.

Concept tested: HTTP methods and CRUD operations

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

Topics

#REST API#HTTP methods#CRUD#GET

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice