Last Updated on March 26, 2021 by Admin
Which two HTTP functions correspond to the UPDATE function in CRUD? (Choose two.)
- POST
- DELETE
- PATCH
- PUT
- GET
Answers Explanation & Hints: CRUD is an acronym that stands for CREATE, READ, UPDATE, and DELETE. The HTTP functions that correspond to CRUD functions are as follows:
GET -> READ
POST -> CREATE
PUT/PATCH -> UPDATE
DELETE -> DELETE