What is the main role of the Sequence Number field in a TCP segment?
Think about how TCP ensures data arrives in the right order.
The Sequence Number field helps the receiver put the data back in the correct order by numbering each byte sent.
What is the size in bytes of a standard TCP header without any options?
Recall the fixed length of the TCP header before options are added.
The standard TCP header is 20 bytes long when no options are included.
How does the Window Size field in a TCP segment affect data transmission?
Consider how TCP prevents overwhelming the receiver with too much data at once.
The Window Size tells the sender how much data it can send before needing an acknowledgment, helping to avoid congestion.
Which statement correctly compares the Acknowledgment Number and Sequence Number fields in a TCP segment?
Think about how TCP tracks sent data and confirms receipt.
The Sequence Number marks the byte position sent; the Acknowledgment Number tells the sender which byte the receiver expects next.
What happens if the Checksum field in a received TCP segment does not match the computed checksum?
Consider how TCP ensures data integrity before processing.
If the checksum does not match, TCP treats the segment as corrupted and discards it to avoid passing bad data.