Rest API - Rate Limiting and Throttling
Given the following Python code snippet implementing a fixed window rate limiter, what will be the output?
requests = [1, 1, 1, 1, 1]
limit = 3
window_start = 0
count = 0
for req in requests:
if count < limit:
count += req
print("Allowed")
else:
print("Blocked")