1,153 views

2 Answers

Best answer
2 2 votes

In slow start phase, congestion window is incremented by 1 when an ACK is received by sender 

cwnd = cwnd + 1,

Congestion Avoidance phase starts when congestion window reaches the slow start threshold. Each time, an ACK is received congestion window is incremented as follows - 

cwnd = cwnd + 1/cwnd.

So, option C is correct. 

selected by
0 0 votes

In slow start Phase 

Cwnd Size =  (prev current window size)*2

in conjection Avoidance Phase

Cwnd Size= Prev Cwnd+ 1

edited by
Answer:
Position:
Show:

Related questions

2 2 votes
2 2 answers
1.0k
1.0k views
Warlock lord asked Jan 16, 2018
1,034 views
Suppose TCP’s additive increase and multiplicative decrease algorithm is used as a congestion control algorithm. The slow start phase begins with 4 MSS and threshold at s...
0 0 votes
0 0 answers
863
863 views
Tuhin Dutta asked Dec 19, 2017
863 views
Suppose,size of a full window is 24 Kb.There is no congestion.1 MSS = 2 Kb.RTT = 10 msHow long does it take to send the first full window?Approach 1) 2 | 4 | 8 | 16 | 24 ...
5 5 votes
0 0 answers
1.0k
1.0k views
Shubhanshu asked Aug 18, 2017
1,044 views
Consider a system, where sender sends 50 packets to the receiver, and suppose during the transmission packet no 10, 25, 34, 45 are lost, then calculate the through put(in...
3 3 votes
1 answers 1 answer
2.1k
2.1k views
rahul sharma 5 asked Aug 13, 2017
2,071 views
R.T.T=10 microsec.M.S.S=100 BytesSlow start protocol used to send data.Sender needs to send data till it completes sending window size 8MSS.Find:-a. Total Time takenb....