What is the exact difference in between Unicast and
Multicast object ?
Answer Posted / meera
A unicast packet is the complete opposite: one machine is
talking to only one other machine. All TCP connections are
unicast, since they can only have one destination host for
each source host. UDP packets are almost always unicast too,
though they can be sent to the broadcast address so that
they reach every single machine in some cases.
A multicast packet is from one machine to one or more. The
difference between a multicast packet and a broadcast packet
is that hosts receiving multicast packets can be on
different LANs, and that each multicast data-stream is only
transmitted between networks once, not once per machine on
the remote network. Rather than each machine connecting to a
video server, the multicast data is streamed per-network,
and multiple machines just listen-in on the multicast data
once it's on the network.
| Is This Answer Correct ? | 9 Yes | 14 No |
Post New Answer View All Answers
What do you mean by jjs in java8?
Is java map thread safe?
What is meant by object oriented programming – oop?
What is boolean data type in java?
Explain the polymorphism principle?
Why java is object oriented?
What is balanced tree in java?
what is encapsulation in java? Explain
How many types of memory areas are allocated by jvm?
Is integer passed by reference in java?
Can singleton class be inherited in java?
Is a class subclass of itself?
How to perform linear search in java?
extending thread class or implementing runnable interface. Which is better? : Java thread
What environment variables do I need to set on my machine in order to be able to run java programs?