Which HTTP method is idempotent: GET or POST?
- DELETE
- GET
- POST
- PUT
The GET method is idempotent, meaning multiple identical requests have the same effect as a single request. This is because GET requests do not change the state on the server.
Loading...
Related Quiz
- The ability of a transaction to operate independently of other transactions is known as __________.
- To ensure that database resources are always released, use the __________ block to close connections.
- How does PreparedStatement help in preventing SQL injection attacks?
- How can a filter access initialization parameters set in the web.xml file?
- In Java, the __________ collector is used for young generation garbage collection.