A network engineer is optimizing a time-sensitive financial market data broadcast application where minimizing packet processing delay is critical. The development team decides to transport the data feeds using UDP rather than TCP. Which statement accurately compares the Layer 4 header overhead and operational behavior of UDP relative to TCP?
- UDP uses a fixed 8-byte header and operates statelessly without connection establishment, whereas TCP uses a minimum 20-byte header and maintains stateful connection tracking.Answer
- BUDP uses a 20-byte header but achieves lower latency by omitting sequence numbers, whereas TCP header size dynamically scales down to 8 bytes when window scaling is disabled.
- CUDP reduces header overhead to 8 bytes by moving flow control mechanisms directly into the Layer 3 IP header flags.
- DUDP maintains a fixed 8-byte header by utilizing negative acknowledgments (NAKs) sent from the destination to report lost datagrams.
Answer
UDP utilizes a fixed 8-byte header and operates statelessly without connection setup, while TCP uses a minimum 20-byte header and maintains stateful tracking.
The correct answer accurately states that UDP has a streamlined fixed 8-byte header containing only source port, destination port, length, and checksum fields, and operates without establishing connection state. TCP, by contrast, requires at least 20 bytes of header space for fields such as sequence numbers, acknowledgments, control bits, and window size, maintaining active state tracking across the session.
Step-by-Step Solution
Key Concept
TCP vs UDP Header Overhead and Connection State
Estimated Time:1m 0s