InterviewSolution
Saved Bookmarks
| 1. |
HTTP client requests by establishing a __________ connection to a particular port on the server.(a) User datagram protocol(b) Transmission control protocol(c) Border gateway protocol(d) Domain host control protocol |
|
Answer» The correct answer is (b) Transmission control protocol To elaborate: HTTP clients perform requests using a TCP connection, because the TCP connection provides a more reliable service. UDP is not a reliable protocol, border gateway protocol is used on top of TCP, while domain host control protocol is a network layer protocol. |
|