In a RESTful API, which HTTP method corresponds to the Update operation in CRUD?
- GET
- POST
- PUT
- DELETE
In a RESTful API, the PUT HTTP method corresponds to the Update operation in CRUD (Create, Read, Update, Delete). It is used to update or modify an existing resource on the server.
Loading...
Related Quiz
- The typeof operator in JavaScript returns 'object' for ________.
- You are building a RESTful API with Express to serve a mobile application. The mobile development team has asked for the ability to retrieve condensed responses to minimize data usage. How would you accommodate this request while maintaining the integrity of your API?
- Which of the following responses to a preflight request will allow a browser to make a cross-origin call to upload a file?
- How can you create a private variable inside a JavaScript function?
- The 'highWaterMark' option in Node.js streams denotes the ______ of the internal buffer.