asked 51.3k views
4 votes
TCP is a connection-oriented transport protocol and as such, provides:

A) reliable transport between the client and server processes
B) timing - or controlled delivery of data
C) security
D) minimum throughput guarantees

1 Answer

5 votes

Answer: The right answer is A).

Step-by-step explanation:

TCP, is the transport layer protocol of the TCP/IP suite, and is the one that guarantees a reliable transport between the two ends of a client-server process taking care that all packets (TCP segments) reach to destination , and in the right order.

In order to get this, in simple words, it "listens" to the answers from the remote end, receiving wich is called an acknowledgement (ACK) from the another site, that is also time-related to the last segment sent, which it is included in the TCP Header.

In this way, it can check if the different segments (that also identifies the application process through the "port " concept) are arriving to destination, and in which order.

answered
User Joaquin Javi
by
7.6k points