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

+17 votes
asked in CSC335_Spring2019 by (1 point)

2 Answers

+12 votes
 
Best answer

Think of it this way, there are three most common types of information transferring methods are: UNICAST: which is the most common type, in which one computer would communicate directly to one client back and forward.
BROADCAST: which consists on one source sending information to all possible destinations, although this method is not too useful because of all the “junk” or unnecessary information that would reach the different destinations.
And lastly MULTICAST: which is essentially like “streaming” all information is sent from one source (the streamer) to all destinations that require it (like the viewers)

answered by (1 point)
selected by
+2

#better than my answer

+8 votes

It seems to me that the main difference between the two is that broadcasted packets are sent to every destination connected to the ethernet LAN, whereas multicast is sent to many but not all based on a multicast address those computers are subscribed to.

answered by (1 point)
...