QuestionQ6

IP Services

What is the PUT method within HTTP?

  • A It replaces data at the destination.
  • B It is a nonidempotent operation.
  • C It is a read-only operation.
  • D It displays a web site.
Explanation

The HTTP PUT method is used to create or replace the representation of a resource at the target URI. Standards documentation describes PUT as replacing the state of the target resource, and it is idempotent, which rules out the choices describing it as nonidempotent, read-only, or used to display a website.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!