You need to create methods to support standard insert, select, update, and delete operations in an HTTP service

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 to create 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 the answer 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.)

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 to create 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 the answer 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.)

Answer:

Explanation:

http://msdn.microsoft.com/en-us/library/ff478141.aspx



Leave a Reply 7

Your email address will not be published. Required fields are marked *


Freedrinks

Freedrinks

As I understand it, you should be able to use POST instead of PUT but I’m having a hard time finding any good answer on the web. So if the questions pops up and there is no PUT option, use the POST instead.

hus

hus

Should be put but if no PUT option present, it should be POST

Psehgaft

Psehgaft

The correct is:

GET
GET
GET
POST
POST
DELETE

Deno

Deno

Correct is:
GET
GET
GET
POST
PUT / POST
DELETE