Correct Answer: Correct answer is: (A) Request line.
Exam Relevance: Computer Networks, Web Development, Software Engineering
Difficulty: Easy
Concept notes: The first line of an HTTP request message contains the method, the request-URI, and the HTTP version. This line is known as the request line.
Common Mistakes: Students often confuse the request line with the header line, which follows the request line and contains additional information about the request.
Explanations: The first line of an HTTP request message is called the request line. It includes the HTTP method (such as GET, POST), the request-URI (the resource being requested), and the HTTP version (such as HTTP/1.1). This line is distinct from the header line, which follows the request line and contains additional metadata about the request.
Option Analysis: - Option A: Correct. The first line of an HTTP request message is the request line.
- Option B: Incorrect. The header line follows the request line and contains additional information about the request.
- Option C: Incorrect. The status line is part of the HTTP response, not the request.
- Option D: Incorrect. There is no entity line in an HTTP request message.
Mnemonic: Remember: "R" for Request line, "H" for Header line, "S" for Status line.