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 happens if an exception is throws from an object's constructor?
What advantage do java's layout managers provide over traditional windowing systems?
String and stringbuffer both represent string objects. Can we compare string and stringbuffer in java?
Can we use static class instead of singleton?
Does sprintf allocate memory?
How many threads does a core java have?
What is this () in java?
Difference between throw and throws?
What is a line break?
What is substring 1 in java?
What is printwriter in java?
Are functions objects in java?
What is the use of singleton class?
How destructors are defined in java?
How do you end a program?