Complete the sentence to describe the main goal of TCP congestion control.
TCP congestion control aims to [1] network congestion by adjusting the rate of data transmission.TCP congestion control reduces network congestion by controlling how fast data is sent.
Complete the sentence to identify the TCP algorithm phase that increases the congestion window size exponentially.
The [1] phase rapidly increases the congestion window size to probe network capacity.The slow start phase increases the congestion window exponentially to quickly find the network capacity.
Fix the error in the description of TCP congestion control phases.
After detecting packet loss, TCP enters [1] phase to reduce the congestion window and recover quickly.
Fast recovery is the phase TCP enters after packet loss to reduce congestion window and recover quickly.
Fill both blanks to complete the formula for updating the congestion window size during congestion avoidance.
cwnd = cwnd [1] ([2] / cwnd) per acknowledgment received
During congestion avoidance, the congestion window increases by 1 full-sized segment per round-trip time, approximated as adding 1/cwnd per ACK.
Fill all three blanks to complete the description of TCP congestion control response to packet loss.
On packet loss, TCP sets [1] to half of its current value, resets [2] to 1, and enters [3] phase.
When packet loss occurs, TCP sets the slow start threshold (ssthresh) to half the congestion window, resets the congestion window (cwnd) to 1, and enters slow start phase to cautiously probe the network.