DRAG DROP
You are developing an ASP.NET MVC Web API application. The method names of the Web API must match
naming guidelines for RESTful services. You need tocreate methods to support standard insert, select,
update, and delete operations in an HTTP service. What should you do? (To answer, drag the appropriate
HTTP methods to the correct row in the table in theanswer area. Each HTTP method may be used once, more
than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
A.
GET, POST, PUT, PUT, POST, DELETE
B.
GET, GET, GET, POST, PUT, DELETE
C.
GET, GET, GET, ADD, INSERT, DELETE
D.
GET, GET, GET, POST, UPDATE, DELETE
No put, so should use GET, GET, GET, POST, POST, DELETE
For update, PUT is way better than POST in this case