Which CRUD operation corresponds to the HTTP GET method?

IT Exam Items RepositoryCategory: CCNAWhich CRUD operation corresponds to the HTTP GET method?

Which CRUD operation corresponds to the HTTP GET method?

  • A. read
  • B. update
  • C. create
  • D. delete

Answer: A
Explanation: GET: This method retrieves the information identified by the request URI. In the context of the RESTful web services, this method is used to retrieve resources. This is the method used for read operations (the R in CRUD).
https://hub.packtpub.com/crud-operations-rest/

Related exam: CA201