Intermediate
Web & Software Development
Q70 / 100
What problem does rate limiting solve for a public web API?
Correct! Well done.
Incorrect.
The correct answer is D) It caps how many requests a client can make in a given time window, protecting the service from abuse, accidental overload, and ensuring fair resource usage among consumers
D
Correct Answer
It caps how many requests a client can make in a given time window, protecting the service from abuse, accidental overload, and ensuring fair resource usage among consumers
Explanation
Rate limiting (token bucket, sliding window, fixed window algorithms) restricts request volume per client/IP/API key over time. It protects backend resources from being overwhelmed and keeps the service fair and available for all consumers.
Progress
70/100