Select from following answers:- GET
- POST
- PUT
- DELETE
- All Above
HTTP POST is use for dynamic resource creation on the server side.The data from the client is included in the request body.HTTP POST initiates an action on the server side by identifying the resource from the request body and then stores the resource in the server identified by the URI. The operation that needs to be played with the resource depends on the action being specified by the server which can be creation or updation or both. It differs from the HTTP PUT in that, the later is Idempotent.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator