200-901 · Question #22
An application calls a REST API and expects a result set of more than 550 records, but each time the call is made, only 25 are returned. Which feature limits the amount of data that is returned by…
The correct answer is A. pagination. Pagination is the API feature that limits the number of records returned per response and provides a mechanism (e.g., page numbers, offsets, or cursor tokens) to retrieve subsequent pages. Returning only 25 records at a time when 550+ exist is a classic pagination pattern. Rate…
Question
An application calls a REST API and expects a result set of more than 550 records, but each time the call is made, only 25 are returned. Which feature limits the amount of data that is returned by the API?
Options
- Apagination
- Bpayload limit
- Crate limiting
- Dservice timeouts
How the community answered
(27 responses)- A89% (24)
- B7% (2)
- C4% (1)
Explanation
Pagination is the API feature that limits the number of records returned per response and provides a mechanism (e.g., page numbers, offsets, or cursor tokens) to retrieve subsequent pages. Returning only 25 records at a time when 550+ exist is a classic pagination pattern. Rate limiting restricts how many API calls can be made in a time window, not the size of each response. Payload limit refers to request body size, not result sets. Service timeouts disconnect long-running calls.
Topics
Community Discussion
No community discussion yet for this question.