APPLICATION LAYER
CLIENT SERVER PARADIGM
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
____ is an HTTP method that updates data already on the server.
|
GET
|
|
POST
|
|
PUT
|
|
DELETE
|
Explanation:
Detailed explanation-1: -PUT updates the entire resource with data that is passed in the body payload. If there is no resource that matches the request, it will create a new resource.
Detailed explanation-2: -The HTTP PUT operation is used for a full replacement of an OSLC resource. The PUT method updates both literal properties and local resource properties, and it deletes any local resource properties that are not included in the request.
Detailed explanation-3: -The POST Method POST is used to send data to a server to create/update a resource.
Detailed explanation-4: -PUT Method With the PUT request method, we can update an existing resource by sending the updated data as the content of the request body to the server.
There is 1 question to complete.