1.

What constitutes the core components of HTTP Response?

Answer»

HTTP Response has 4 components:

  • Response STATUS Code − This represents the server response status code for the REQUESTED resource. Example- 400 represents a client-side error, 200 represents a successful response.
  • HTTP Version − Indicates the HTTP protocol version.
  • Response Header − This PART has the metadata of the response message. Data can describe what is the content length, content TYPE, response date, what is server type, etc.
  • Response Body − This part contains what is the actual resource/message returned from the server.


Discussion

No Comment Found