Match each network application scenario to the specific transport protocol characteristic that satisfies its operational requirements.
- High-frequency live video streaming requiring minimal jitter and tolerance for missing frames.Connectionless transport utilizing 8-byte headers to prioritize low latency over error correction.
- Automated database transaction mirroring requiring strict packet ordering and guaranteed delivery.Connection-oriented transport utilizing a three-way handshake and dynamic windowing for reliable byte-stream transfer.
- Network Time Protocol (NTP) updates requiring small datagram size without session maintenance overhead.Connectionless transport operating statelessly without connection establishment or teardown overhead.
- Secure Shell (SSH) administrative sessions requiring persistent state tracking and packet retransmission.Connection-oriented transport employing sequence numbers and retransmission timers for error-free session tracking.
Cevap
Each scenario maps to its appropriate transport characteristics based on requirements for connection state, header overhead, latency tolerance, and delivery guarantees: Live streaming maps to connectionless low-latency 8-byte headers; Database transaction mirroring maps to connection-oriented three-way handshake with dynamic windowing; NTP time sync maps to connectionless stateless operation; SSH management maps to connection-oriented sequence numbering and retransmission timers.
Each application requirement matches its fundamental Transport Layer protocol: latency-sensitive live streaming and lightweight NTP transactions use UDP connectionless transport (minimal overhead, no handshake), whereas mission-critical database mirroring and SSH administration sessions use TCP connection-oriented transport (three-way handshake, sequence numbers, retransmissions, and flow control).
Adım Adım Çözüm
Anahtar Kavram
Selecting between connection-oriented (TCP) and connectionless (UDP) transport protocols based on application requirements for reliability, overhead, ordering, and latency.