A harbor-ops app pages AppDynamics metric snapshots using offset += 1 after each 50-item page instead of advancing by the page size the API contract uses. What is the likely construction result?
Select an answer to reveal the explanation.
Short Explanation
Imagine stepping a measuring tape by one inch when each photo covers fifty inches—you either re-shoot the same stretch or skip a stretch. Wrong stride skips or overlaps. Step by the contract the API actually uses.
Full Explanation
Offset-based consumers must advance by the page size (or returned length) the API defines. Adding 1 instead of the page size, or otherwise using the wrong stride, produces gaps or duplicates in the constructed collection. The defect is pagination math against the contract, not a language-syntax quiz or a transport change.