Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Congestion Control Algorithms Various control algorithms are used to address network congestion during short peaks of data transmission. Which pair of pseudo - code snippets

Congestion Control Algorithms
Various control algorithms are used to address network congestion during short peaks of data transmission. Which pair of pseudo-code snippets correctly represent the "Slow Start" and "Additive Increase Multiplicative Decrease (AIMD)" algorithms, respectively?
Pick ONE OR MORE options
// Slow Start wnd =1// wnd is the size of the congestion window while (cwnd < ssthresh) do //
ssthresh is the slow start threshold for each ACK received do cwnd = cwnd +1
// AIMD if (packet is acknowledged) then wnd = wnd +1// cwnd is the size of the congestion window
else if (packet is lost) then cwnd = cwnd /2
// Slow Start wind =1// wnd is the size of the congestion window while (cwnd < ssthresh) do /I
thresh is the slow start threshold for each round-trip time (RTT) do cwnd = cwnd *2
/ AIMD if (packet is acknowledged) then wnd = wnd *2// wnd is the size of the congestion window
else if (packet is lost) then cwnd = cwnd /2

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional IPhone And IPad Database Application Programming

Authors: Patrick Alessi

1st Edition

0470636173, 978-0470636176

More Books

Students also viewed these Databases questions

Question

2. How will the team select a leader?

Answered: 1 week ago

Question

3. What may be the goal of the team?

Answered: 1 week ago