791 views
1 votes
1 votes

Suppose A and B are on same 10Mbps ethernet segment and the propogation delay between nodes is 225 bit times.
Suppose A and B send frames at t=0 , the frames collide then at what time they finish travelling a 48 bit jam signal ?

In this question how come propogation delay is in bit times , it should be transmission time which is equal to length of frame / bandwidth .

1 Answer

Related questions

0 votes
0 votes
0 answers
1
usdid asked Apr 16, 2022
279 views
a) what is the iterative equation showing the running time of the algorithm whose pseudocode is given below? b) What is this repeated equation in asymptotic notation usin...
0 votes
0 votes
2 answers
2
radha gogia asked Jul 7, 2018
1,581 views
foo(int n) { for(int i=0 ; i<n ;i++) for(int j=i ; j<=i*i ;j++) if(j%i==0) { for(int k=0;k<j;k++) printf("hii"); } } How to proceed here for analyzing the time complexity...