Multiple choice technology web technology

HTML status code 100 specifies

  1. The requested response is at a different URI and should be accessed using a GET command at the given URI.

  2. The method specified in the Request-Line is not allowed for the specified resource.

  3. Tells the client that the first part of the request has been received and that it should continue with the rest of the request or ignore if the request has been fulfilled.

  4. The expectation given in the Expect request-header could not be fulfilled by the server.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

HTTP 100 Continue is an informational response code that tells the client the initial part of the request was received and the server is waiting for the remainder. It's used when the client sends an Expect: 100-continue header to check if the server will accept the request body.