Match each network communication characteristic or operational requirement on the left with its corresponding transport layer protocol mechanism on the right.
- Guaranteed in-order packet delivery using sequence numbers and acknowledgmentsTransmission Control Protocol (TCP) reliable stream control with sequence tracking
- Fixed header overhead without prior session establishmentUser Datagram Protocol (UDP) lightweight header encapsulation
- Dynamic sliding window mechanisms to adjust transmission rate based on buffer capacityTransmission Control Protocol (TCP) flow control and sliding window operation
- Low-latency stateless datagram transmission suited for broadcast or multicast streamsUser Datagram Protocol (UDP) connectionless transport for real-time unacknowledged delivery
Cevap
Guaranteed in-order delivery pairs with TCP sequence tracking; fixed header overhead pairs with UDP lightweight encapsulation; dynamic sliding window mechanisms pair with TCP flow control; and low-latency stateless delivery pairs with UDP connectionless transport.
TCP is a connection-oriented protocol that provides reliability through sequence numbers, acknowledgments, and flow control via sliding windows. In contrast, UDP is a connectionless protocol characterized by a minimal header, lack of session state, and low-latency delivery suitable for real-time or broadcast applications.
Adım Adım Çözüm
Anahtar Kavram
Connection-Oriented (TCP) vs Connectionless (UDP) Transport Protocols