recategorized by
269 views
4 votes
4 votes
Which of the following statement is TRUE regarding the way CSMA/CD react to collisions?
  1. All systems jam the network, and then all begin transmitting again
  2. Hosts involved in a collision send an RTS signal indicating a time frame in which to retransmit
  3. Hosts involved in the collision send a jam signal, and then run an algorithm before retransmitting
  4. Collisions do not occur on CSMA/CD
recategorized by

1 Answer

Best answer
4 votes
4 votes

Option C.

CSMA/CD stands for Carrier Sense, Multiple Access with Collision Detection.

  • Carrier Sense: All nodes can distinguish between idle and busy links.
  • Collision Detection: Node listens as it transmits can tell if it collides with another frame.
  • Listen before transmit: 
    • If the channel sensed idle then transmit the entire frame.
    • if the channel sensed busy then defer transmission.

Any station that wants to transmit a  frame,  or is currently transmitting a  frame must continuously keep sensing the channel, to detect if the channel is idle and to detect collisions respectively. 

In  CSMA/CD,  when a  collision is detected the involved stations must immediately stop transmitting.  When their  "sensed"  data does resemble the data they're sending;  they know collision has occurred.  But sometimes,  for example,  when a  collision of  $0$  Volts occurs,  it is impossible to detect collision.  Hence,  we use a  maximum  $48$-bit  jamming signal which announces the occurrence of collision .the  purpose of the jamming signal is to tell all other stations that a collision has occurred.

References:

selected by
Answer:

Related questions

3 votes
3 votes
1 answer
2