200-301 · Question #691
Drag and Drop Question Drag and drop the HTTP methods used with REST-Based APIs from the left onto the descriptions on the right. Answer:
The correct answer is POST; PUT; DELETE; GET; PATCH. The correct arrangement maps each HTTP method to its standard REST description: POST creates new resources, PUT replaces/updates an entire existing resource, DELETE removes a resource, GET retrieves/reads resource data, and PATCH partially modifies an existing resource. These fiv
Question
Exhibits
Answer Area
Drag items
Correct arrangement
- POST
- PUT
- DELETE
- GET
- PATCH
Explanation
The correct arrangement maps each HTTP method to its standard REST description: POST creates new resources, PUT replaces/updates an entire existing resource, DELETE removes a resource, GET retrieves/reads resource data, and PATCH partially modifies an existing resource. These five methods form the core of RESTful API interactions and align with CRUD (Create, Read, Update, Delete) operations. Each method has a specific, idempotent or non-idempotent behavior that defines how the server should process the request.
Topics
Community Discussion
No community discussion yet for this question.

