Match each transport layer characteristic or protocol mechanism on the left to its corresponding protocol operation on the right.
- Three-way handshake (SYN, SYN-ACK, ACK)Stateful connection establishment in TCP
- Fixed 8-byte header structure without sequence numbersLow-overhead encapsulation mechanism in UDP
- Dynamic sliding windowing mechanismFlow control to prevent buffer exhaustion in TCP
- Best-effort transmission without retransmissionsStateless data delivery for real-time traffic in UDP
Answer
The three-way handshake matches stateful connection establishment in TCP; the fixed 8-byte header matches low-overhead encapsulation in UDP; dynamic sliding windowing matches flow control in TCP; and best-effort transmission matches stateless data delivery in UDP.
Each feature correctly pairs with its protocol operation: TCP manages state initializations via the three-way handshake and regulates sender rate using sliding window flow control. Conversely, UDP minimizes encapsulation with an 8-byte header and delivers packets statelessly without retransmissions.
Step-by-Step Solution
Key Concept
Comparison of stateful, reliable TCP mechanics versus lightweight, connectionless UDP operations