Exam 200-301 All QuestionsBrowse all questions from this exam
Question 38

DRAG DROP -

Drag and drop the descriptions of IP protocol transmissions from the left onto the IP traffic types on the right.

Select and Place:

    Correct Answer:

Discussion
Racaine

error on the answer, transmits a packets as a stream is UDP fonction not TCP

amrith501

Answers are correct https://www.vpnmentor.com/blog/tcp-vs-udp/#:~:text=TCP%20sends%20out%20a%20stream,individual%20packets%20possess%20proper%20boundaries

SScott

Yes, good link with highlight. Answers are correct. TCP is reliable and the transmission is a stream. UDP is unreliable because the packets are sent individually with no recovery nor acknowledgement which help provide the higher transmission rate.

rlelliott

"Stream Versus Packet — TCP/IP is a stream-oriented protocol, while UDP is a packet-oriented protocol. This means that TCP/IP is considered to be a long stream of data that is transmitted from one end of the connection to the other end, and another long stream of data flowing in the opposite direction." https://www.mathworks.com/help/instrument/tcpip-and-udp-comparison.html#:~:text=Stream%20Versus%20Packet%20%E2%80%94%20TCP%2FIP,flowing%20in%20the%20opposite%20direction.

ProgSnob

If you've ever used Wireshark you would know that viewing a TCP stream is an important part of troubleshooting.

HippoMonarch

TCP indeed transmits data as an ordered, flow-controlled "stream," whereas UDP sends each data packet individually and without sequencing, more like a "stream" of independent packets rather than a true "stream."

AbdullahMohammad251

The answers are correct! The size of the UDP header is 8 bytes The size of the TCP header is 24 bytes TCP reads data as byte streams and transmits messages to segment boundaries. UDP uses individually sent packets (also called datagrams) with defined boundaries and checks for integrity on receipt. TCP guarantees reliability, and UDP guarantees low latency by avoiding sending data in sequence and receiving acks.

AbdullahMohammad251

https://www.simplilearn.com/differences-between-tcp-vs-udp-article#:~:text=Data%20units%20are%20called%20packets,checks%20for%20integrity%20on%20receipt.

no_blink404

TCP/IP is a stream-oriented protocol, while UDP is a packet-oriented protocol. Suggested Answer is correct.

xtraMiles

Transmission Control Protocol TCP provides a different service than UDP. TCP offers a connection- oriented byte stream, instead of a connectionless datagram delivery service. Source: https://datatracker.ietf.org/doc/html/rfc1180

SeMo0o0o

given answers are correct TCP is stream oriented protocol UDP is packet oriented protocol

SeMo0o0o

This question was in my exam

JulesAZ

The answers are correct imo. pumped some questions into Copilot and was happy with the results 1 - Is tcp or udp transmitted as a stream? 2 - Does TCP or UDP transmit in sequence? Cheers

ciscopue

Sends transmissions in sequence - TCP Transmissions include an 8-byte header - UDP Transmits packets as a stream - UDP Transmits packets individually - TCP Uses a higher transmission rate to support latency-sensitive applications - UDP Uses a lower transmission rate to ensure reliability - TCP

ciscopue

sends transmissions in sequence - TCP transmissions include an 8-byte header - UDP transmits packets as a stream - TCP transmits packets individually - UDP uses a higher transmission rate to support latency-sensitive applications - UDP uses a lower transmission rate to ensure reliability - TCP

PaddyInNZ

Yes, the answers are correct. The difficult question is the "stream" vs. "individually". Here (probably) is where they sourced this question: https://www.mathworks.com/help/instrument/tcpip-and-udp-comparison.html

JunsK1e

Check the question #26

itsmeJB

Do we really need to answer it in this order?

aymanmk

stream it was for udp

MadKisa

It is not, read previous comments

Shabeth

this is the answer from question#26., its just confusing B. TCP provides flow control to avoid overwhelming a receiver by sending too many packets at once, UDP sends packets to the receiver in a continuous stream without checking.

Dunedrifter

Given answers are correct.

ProgSnob

TCP is considered a stream. It does send packets individually but it sends them continually until the stream of data is completed. UDP sends packets individually in an unorganized manner while a stream is a continuous flow. I don't think of a flow when I think of UDP.

Dante_Dan

For the TCP/UDP - stream discussion: Extracted directly from the Official Cert Guide CCNA 200-301 Volume 2 Page 7 Table 1-2: It mentions some of the features that TCP has: Ordered data transfer and data segmentation.- Continuous stream of bytes from an upper-layer process that is "segmented" for transmission and delivered to upper-layer processes at the receiving device, with the bytes in the same order

adli1984

TCP/IP is a stream-oriented protocol, while UDP is a packet-oriented protocol