InterviewSolution
Saved Bookmarks
| 1. |
Which header field defines meta information?(a) Request-header(b) Response-header(c) General-header(d) Entity-headerThis question was posed to me in unit test.This question is from HTTP Overview topic in division HTML Fundamentals of HTML |
|
Answer» CORRECT choice is (d) Entity-header The best explanation: A HTTP header which does not relate to the content of MESSAGE is a response-header. A request-header is USED to PROVIDE information about request or response. Entity-header field defines meta information about the body. If the body is not PRESENT resource is identified by request. The general syntax for all the header fields is msg-header=field-name “:” [field-value]. General-header field is for both response and request. |
|