TRANSPORT LAYER
INTRODUCTION
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
4
|
|
2
|
|
3
|
|
none of the above
|
Detailed explanation-1: -To use the services of UDP, we need socket addresses. Explanation : To use the services of UDP (User Datagram Protocol), we need two socket addresses: a source socket address and a destination socket address.
Detailed explanation-2: -User Datagram Protocol (UDP) refers to a protocol used for communication throughout the internet. It is specifically chosen for time-sensitive applications like gaming, playing videos, or Domain Name System (DNS) lookups.
Detailed explanation-3: -Create a socket with the socket() function; Bind the socket to an address using the bind() function; Send and receive data by means of recvfrom() and sendto().
Detailed explanation-4: -Lossless data transmission. UDP can be used in applications that require lossless data transmission. Gaming, voice and video. Services that don’t need fixed packet transmission. Multicasting and routing update protocols. Fast applications.