Waiting time for a 100 Mbps broadcast channel is 0.512 ms
Recall that with the CSMA/CD protocol, the adapter waits K * 512 bit times after a collision,
where K is drawn randomly. For K = 100,
The one bit time for 10 Mbps is 1/10000000 s = 0.0001 ms
The one bit time for 100 Mbps is 1/100000000 s = 0.00001 ms
Waiting time for a 10 Mbps broadcast channel is K*512*0.0001= 5.12 ms
Waiting time for a 100 Mbps broadcast channel is K*512*0.00001= 0.512 ms
<h3>
What is a collision in Ethernet?</h3>
- A collision happens on a half-duplex Ethernet network when two devices on the same network attempt to communicate data at the exact same time.
- The two transmitted packets are "collapsed" by the network, which results in the network discarding both of them.
- On Ethernets, collisions are unavoidable.
- A collision is a momentary interaction between two bodies or more than two bodies at once that modifies the motion of the bodies involved as a result of the internal forces at work.
- Collisions entail the application of force (there is a change in velocity).
Learn more about collision in Ethernet: brainly.com/question/14123270
#SPJ4
Answer:
So the first one i think is A. The second is 2, and that i do know
Explanation:
Fair use laws allow you to use other peoples copyrighted info for educational purposes
Answer:
c.
Explanation:
Based on the information provided within the question it can be said that the organization that is being mentioned is called the The Association for Computing Machinery (ACM). This association was founded in 1947 is the largest computing society in the world, with it's main focus being on computer science and education.
Answer:
C. The main method proceeds to the next statement following the t3.join(); statement
Explanation:
join() method allows the thread to wait for another thread and completes its execution. If the thread object is executing, then t3.join() will make that t is terminated before the program executes the instruction. Thread provides the method which allows one thread to another complete its execution. If t is a thread object then t.join() will make that t is terminated before the next instruction. There are three overloaded functions.
join()
join(long mills)
join(long millis, int Nanos)
If multiple threads call the join() methods, then overloading allows the programmer to specify the period. Join is dependent on the OS and will wait .