Describe the User Datagram Protocol.

What will be an ideal response?

UDP (User Datagram Protocol) does not guarantee delivery by first connecting and checking whether data is received; thus, UDP is called a connectionless protocol or best-effort protocol. UDP is used for broadcasting, such as streaming video or sound over the web, where guaranteed delivery is not as important as fast transmission. UDP is also used to monitor network traffic.

Computer Science & Information Technology

You might also like to view...

What value is assigned to the variable strSnip when the following statements execute?

Dim strSnip As String Dim strFullString As String = “Washington” strSnip = strFullString.Substring(1, 3) a. “ton” b. “ash” c. “Was” d. “h”

Computer Science & Information Technology

When implementing a hashCode function, must the function make use of the entire object that it receives as an argument?

What will be an ideal response?

Computer Science & Information Technology