1 1 vote 16. Calculate the latency (from first bit sent to last bit received) forthe following:(a) 100-Mbps Ethernet with a single store-and-forward switch inthe path and a packet size of 12,000 bits. Assume that eachlink introduces a propagation delay of 10 µs and that theswitch begins retransmitting immediately after it has finishedreceiving the packet.(b) Same as (a) but with three switches.(c) Same as (a), but assume the switch implements “cutthrough” switching; it is able to begin retransmitting thepacket after the first 200 bits have been received. Computer Networks computer-networks reference-book + – Akash Kanase 8.4k views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
1 1 vote 1)transmission time=12000/100*10^6= 120 us packer reaches at switch=120+10=130us then from switch to destination=130 so total latency=260us 2)for 3 switches =130*4=520 us(as packet has to go over 4 links) 3)For “cut-through”, a switch needs to only decode the 200 bits before it begins to forward. This takes 2 us. This delay replaces the switch transmit delays in the previous answer for a total delay of one transmit delay + 3 cut through decoding delays + 4 propagation delays = 120+3*2+4*10=166 us Pooja Palod answered Dec 15, 2015 Pooja Palod comment Share Follow See all 2 Comments 2 2 Comments reply Umang Raman commented Dec 15, 2015 reply Follow flag option c has only one switch so only one cut through should be counted. 0 0 replyShare UK commented Dec 15, 2015 reply Follow flag for option c will it be 120+10+2+10=142 microsecond. (considering only one switch) 0 0 replyShare Please log in or register to add a comment.