Which HTTP method is NOT idempotent?
- aGET
- bDELETE
- cPOST✓
- dPUT
Explanation:Idempotent means repeating the same request leaves the server in the same state as sending it once. POST typically creates a new resource on every call, so repeats multiply the effect. DELETE stays idempotent even when a repeat returns 404 — the resource is equally gone.