Which HTTP request method should be used for idempotent operations that do not modify resources?
- DELETE
- GET
- POST
- PUT
The GET method should be used for idempotent operations that do not modify resources. GET requests are considered safe and idempotent, making them suitable for operations that retrieve data without causing side effects on the server.
Loading...
Related Quiz
- The Python module used for logging is called _______.
- Which meta tag is used to make a webpage responsive on various devices?
- Implementing _______ loading allows resources like images and scripts to be loaded asynchronously, improving overall performance.
- The HTML
- Which design pattern is used to define a family of algorithms, encapsulate each algorithm, and make them interchangeable?