Learn the vocabulary of adjusting a connection's send rate based on detected packet loss to avoid overwhelming a network path.
0 / 5 completed
1 / 5
At standup, a dev mentions a TCP connection gradually increasing how much unacknowledged data it sends at once, then sharply cutting that amount back the moment it detects packet loss, to avoid overwhelming the network path between sender and receiver. What is this mechanism called?
TCP congestion control is exactly this: it gradually increases how much unacknowledged data a connection sends at once, then sharply cuts that amount back the moment it detects packet loss, which it treats as a signal of network congestion, in order to avoid overwhelming the network path between sender and receiver. A hash collision is an unrelated hash-table concept about two keys sharing a bucket. This grow-then-back-off-on-loss approach is exactly why TCP connections sharing a network link converge toward fairly sharing its available bandwidth instead of one connection starving the others.
2 / 5
During a design review, the team relies on TCP's congestion control to manage a bulk-transfer connection sharing a network link with other traffic, specifically because backing off sharply on detected packet loss avoids one connection monopolizing the link's bandwidth. Which capability does this provide?
TCP congestion control here provides fair, adaptive bandwidth sharing across connections on a congested link, since backing off on detected loss lets other connections regain their share instead of one connection continuing to send at an ever-increasing rate regardless of congestion. A connection that never backs off regardless of detected packet loss would keep growing its send rate and starve every other connection sharing that link. This back-off-on-loss behavior is exactly why TCP congestion control lets many connections share a network link reasonably fairly.
3 / 5
In a code review, a dev notices a custom bulk-transfer protocol built on raw UDP keeps increasing its send rate indefinitely with no mechanism to back off when packet loss is detected, instead of adopting a TCP-style congestion-control algorithm that backs off on loss. What does this represent?
This is a missed TCP-congestion-control opportunity, since backing off the send rate on detected packet loss would avoid monopolizing the link's bandwidth instead of increasing the send rate indefinitely regardless of loss. A cache eviction policy is an unrelated concept about discarded cache entries. This no-back-off-on-loss pattern is exactly the kind of unfair bandwidth hogging a reviewer flags once the protocol shares a network link with other traffic.
4 / 5
An incident report shows a custom bulk-transfer protocol built on raw UDP starved every other connection sharing its network link, because it kept increasing its send rate indefinitely with no mechanism to back off when packet loss was detected. What practice would prevent this?
Adopting a TCP-style congestion-control algorithm makes the protocol back off its send rate on detected packet loss, sharing bandwidth fairly with other connections. Continuing to increase the send rate indefinitely with no back-off mechanism regardless of how many other connections get starved on the shared link is exactly what caused the starvation described in this incident. This back-off-on-loss approach is the standard fix once a custom protocol is confirmed to share a network link with other traffic.
5 / 5
During a PR review, a teammate asks why the team relies on TCP's built-in congestion control instead of building a custom protocol on raw UDP that always sends at the maximum possible rate. What is the reasoning?
TCP's congestion control backs off on detected packet loss, letting a shared network link's bandwidth be divided fairly among connections, while always sending at the maximum possible rate over raw UDP ignores congestion signals entirely and can starve every other connection sharing that same link. This is exactly why TCP's congestion control is the standard choice for connections sharing bandwidth with other traffic, while raw UDP is reserved for cases where the application implements its own rate management.
What does the "TCP Congestion Control Vocabulary" vocabulary exercise cover?
This exercise tests real IT vocabulary related to tcp congestion control vocabulary through 5 multiple-choice questions, each built from realistic workplace sentences rather than abstract definitions.
Is this vocabulary exercise free to use?
Yes. Every exercise on CoderSlingo, including this one, is completely free — no account, sign-up, or payment required.
How many questions does this exercise have?
This exercise has 5 questions. Each one shows a real-world sentence or scenario with multiple-choice options and an explanation once you answer.
What happens after I answer a question?
You'll see immediate feedback showing whether your answer was correct, along with a short explanation of why — then a button to move to the next question, and a full results screen at the end.
Can I retry the exercise if I get questions wrong?
Yes. Once you reach the results screen, click "Try again" to reset your answers and go through the exercise from the start as many times as you like.
Do I need to create an account to take this exercise?
No account is needed. Your answers are scored in your browser during the session — nothing is saved to a server, so you can jump straight in.
Is my progress saved if I leave the page?
No — progress within an exercise resets if you navigate away or reload. Each exercise is short enough to complete in a few minutes in one sitting.
Are these vocabulary exercises connected to other topics?
Yes — browse the full vocabulary exercises hub to find related modules covering adjacent IT topics and roles.
How is this different from reading a glossary or blog article?
Exercises like this one are active recall drills — you have to choose the correct term or phrasing yourself, which builds retention faster than passively reading a definition.
Where can I find more vocabulary exercises?
Browse the full Vocabulary exercises hub for hundreds of modules covering Agile, DevOps, security, databases, architecture, and more — organised by IT role and skill.