Complete the sentence to explain how TCP ensures data is received correctly.
TCP uses [1] to confirm that data packets have arrived safely.TCP uses acknowledgments to confirm that the receiver has successfully received data packets. This helps ensure reliable delivery.
Complete the sentence to describe how TCP handles lost packets.
If a packet is lost, TCP will [1] the packet to ensure it reaches the destination.TCP retransmits lost packets to make sure all data arrives correctly and in order.
Fix the error in the explanation about TCP's ordering of packets.
TCP ensures data arrives in order by using [1] numbers for each packet.
TCP assigns sequence numbers to packets so the receiver can reorder them correctly if they arrive out of order.
Fill both blanks to complete the explanation of TCP's flow control.
TCP uses a [1] window to control the amount of data sent before waiting for an [2].
The sliding window controls how much data can be sent before waiting for an acknowledgment, helping TCP manage flow control.
Fill all three blanks to explain how TCP detects errors and recovers.
TCP uses [1] to detect errors, [2] to confirm receipt, and [3] to resend lost data.
TCP uses checksums to detect errors, acknowledgments to confirm receipt, and retransmission to resend lost data, ensuring reliable delivery.