what is different between pach and patla
Answers
Answer:
See the clip above.
Hope it helps you.
MARK ME BRAINLIEST
Answer:
PUT is a method of modifying resource where the client sends data that updates the entire resource. It is used to set an entity’s information completely. PUT is similar to POST in that it can create resources, but it does so when there is a defined URI. PUT overwrites the entire entity if it already exists, and creates a new resource if it doesn’t exist.
For example, when you want to change the first name of a person in a database, you need to send the entire resource when making a PUT request.
PUT is a method of modifying resource where the client sends data that updates the entire resource. It is used to set an entity’s information completely. PUT is similar to POST in that it can create resources, but it does so when there is a defined URI. PUT overwrites the entire entity if it already exists, and creates a new resource if it doesn’t exist.
For example, when you want to change the first name of a person in a database, you need to send the entire resource when making a PUT request.
Explanation: