Question: In TCP, there can be ______ RTT measurement(s) in progress at any time.
Answer:
In TCP, there can be multiple Round-Trip Time (RTT) measurements in progress at any time.
RTT is the time it takes for a data packet to travel from the sender to the receiver and back again, and it is used by TCP to determine the appropriate retransmission timer value for data segments. TCP maintains separate RTT estimates for each active connection, and it updates these estimates continuously based on the actual observed round-trip times.
Since TCP can have multiple data segments in flight simultaneously, it is possible to have multiple RTT measurements in progress at any given time. TCP maintains separate RTT estimates for each outstanding segment, and it uses the minimum of these estimates to calculate the retransmission timer value. This approach allows TCP to adapt to changing network conditions and avoid unnecessary retransmissions.
MCQ: In TCP, there can be ______ RTT measurement(s) in progress at any time.
Correct Answer:A. two
Explanation:
In TCP, there can be multiple Round-Trip Time (RTT) measurements in progress at any time.
RTT is the time it takes for a data packet to travel from the sender to the receiver and back again, and it is used by TCP to determine the appropriate retransmission timer value for data segments. TCP maintains separate RTT estimates for each active connection, and it updates these estimates continuously based on the actual observed round-trip times.
Since TCP can have multiple data segments in flight simultaneously, it is possible to have multiple RTT measurements in progress at any given time. TCP maintains separate RTT estimates for each outstanding segment, and it uses the minimum of these estimates to calculate the retransmission timer value. This approach allows TCP to adapt to changing network conditions and avoid unnecessary retransmissions.