Which HTTP methods are commonly used in RESTful APIs for CRUD operations?
- CREATE, READ, UPDATE, DELETE
- FETCH, INSERT, MODIFY, REMOVE
- GET, POST, PUT, DELETE
- RECEIVE, ADD, CHANGE, DELETE
CRUD operations in RESTful APIs correspond to HTTP methods: GET for READ, POST for CREATE, PUT for UPDATE, and DELETE for DELETE. These methods provide a standardized way to interact with resources over the web.
Loading...
Related Quiz
- You encounter a situation where a particular feature of your software intermittently fails in production but works fine in the development environment. How would you approach debugging and resolving this issue?
- What is the time complexity of the binary search algorithm?
- Which type of redundancy does database normalization aim to eliminate?
- NoSQL databases are often preferred for applications requiring high _________ and _________.
- What is the key difference between a tree and a graph?