Tcp Udp Differences?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
TCP:
–Transmission Control Protocol is a connection–oriented protocol.
–The connection must first be established before data can be transferred between computers.
–It ensures that data is sent accurately by retransmitting any lost or corrupted packets.
–It ensures that packets are delivered in the same order they were sent.
–It adds additional header information to the data being sent.
UDP:
–User Datagram Protocol is a connectionless protocol.
–Data can be sent without the need for pre–established connection.
–It does not have the error checking and retransmission features of TCP.
–It does not guarantee that packets are delivered in the same order they were sent.
–It does not add extra header information to the data being sent.
TCP (Transmission Control Protocol) is a connection-oriented protocol that provides a reliable, ordered delivery of data between two endpoints. It is a reliable protocol that guarantees delivery of data and also guarantees that packets will be delivered in the same order in which they were sent.
UDP (User Datagram Protocol) is a connectionless protocol that is simpler than TCP but does not guarantee the reliability and ordering of data. It is an unreliable protocol meaning that packets may be lost or delivered out of order, but it is faster than TCP since it does not require an acknowledgment of receipt.