Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+19 votes
asked in CSC335_Spring2019 by (1 point)

2 Answers

+12 votes

One of the biggest things that separates UDP from TCP is that UDP does not use acknowledgements when sending data. TCP waits for your device to confirm it received the data while UDP does not.

As discussed in class, a good example of this is streaming audio/video.

answered by (1 point)
+11 votes

properties:
Connectionless datagram service: No connection established, packet may show up in any order.
Self contained datagram.

Unreliable delivery:

  • No acknowledgement
  • No mechanism to detect missing or mis-sequenced datagram.
  • No flow control
answered by (1 point)
edited by
...