Two distinct protocols that may be contrasted are TCP and UDP. Give two examples of situations when you, as a software architect, might choose TCP over UDP.
Two distinct protocols that may be contrasted are TCP and UDP. Give two examples of situations when you, as a software architect, might choose TCP over UDP.
TCP: Transmission Control Protocol
It is a connection-oriented protocol designed to provide secure data transfer between processes.
The use of port numbers is required for transmission.
At the transport level, it uses flow control and error control techniques.
UDP: User Datagram Protocol
It is a protocol for the transport layer.
It is a connectionless protocol that is unreliable.
Compared to TCP, it is faster, easier, and more effective.
It does not, however, examine faults for which bandwidth is saved.
It is commonly utilized in real-time services, including phone and video communications and video games.
User datagrams are the name given to the packets sent over UDP.
Step by step
Solved in 6 steps