Complete the sentence to describe TCP.
TCP is a [1] protocol that ensures reliable data delivery.TCP is connection-oriented, meaning it establishes a connection before sending data to ensure reliability.
Complete the sentence to describe UDP.
UDP is a [1] protocol that sends data without establishing a connection.UDP is connectionless, meaning it sends data without setting up a connection first, which makes it faster but less reliable.
Fix the error in the statement about TCP.
TCP uses [1] to check if data packets arrive correctly.
TCP uses checksums to verify that data packets are not corrupted during transmission.
Fill both blanks to describe UDP features.
UDP is [1] and does not provide [2] for data packets.
UDP is fast because it does not provide reliability features like error checking or retransmission.
Fill all three blanks to complete the comparison.
TCP is [1], uses [2] to manage data flow, and guarantees [3]. UDP is connectionless, does not manage flow, and does not guarantee delivery.
TCP is connection-oriented, uses flow control to manage data, and guarantees reliability. UDP is connectionless and does not guarantee delivery.