InterviewSolution
Saved Bookmarks
| 1. |
Which of the following HTTP methods should be idempotent in nature?(a) OPTIONS(b) DELETE(c) POST(d) HEAD |
|
Answer» The correct choice is (b) DELETE Explanation: DELETE operation should be idempotent, means their result will always same no matter how many times these operations are invoked. Also, the PUT operation is supposed to be idempotent. |
|