What is the difference in data transmission delivery and reliability between TCP and UDP?
What is the difference in data transmission delivery and reliability between TCP and UDP?
TCP requires the connection to be established before transmitting data, ensuring reliable data transmission through a three-way handshake process, error checking, and retransmission of lost packets. UDP, on the other hand, operates without establishing a connection, resulting in faster data transmission but without guaranteeing packet delivery or ordering.
B is correct
B is correct
B is correct
UDP speeds up transmissions by enabling the transfer of data before an agreement is provided by the receiving party. As a result, UDP is beneficial in time- sensitive communications, including voice over IP (VoIP), domain name system (DNS) lookup, and video or audio playback.
TCP - connection-oriented UDP - connectionless
B is correct
B is the correct answer.