Which of the following is NOT a valid HTTP method in Django views?

Which of the following is NOT a valid HTTP method in Django views?

a) POST
b) GET
c) UPDATE
d) DELETE

Answer:

c) UPDATE

Explanation:

POST, GET, and DELETE are valid HTTP methods, while UPDATE is not. Django typically uses PUT or PATCH for updating resources.

Reference:

Django Quiz – MCQ Questions and Answers

Scroll to Top