DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
API Development Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
medium
API Development
A code review finds GET /feed?offset=8000&limit=50 used for a social media feed with very high write volume. What should be flagged?
A
Nothing — offset pagination is always fine
B
This is exactly the high-risk pattern for the offset consistency bug — a large, actively-mutating dataset at a deep offset, where skips/duplicates are near-certain over enough requests
C
The limit value is the only issue here
D
This is only a problem if the feed uses a NoSQL database
Check Answer