Identifying the Least 77-Multiple Above 700,000

Smallest multiple of seventy seven above seven hundred thousand is an easy quant interview question on Probability, reported to have been seen at Optiver.

Difficulty Easy Topic Probability Reported at Optiver

MyQuantPartner is not affiliated with, endorsed by, or sponsored by these companies, and all trademarks belong to their respective owners.

This quant interview question is a quick numerical check of comfort with divisibility, multiples, and modular arithmetic. Although it looks purely computational, it hides a simple structure: relating a large benchmark number to a regular grid of allowed values. On MyQuantPartner, it fits into the core quant prep theme of translating plain-language constraints into precise arithmetic conditions.

It trains comfort with modular arithmetic, divisibility rules, and mental manipulation of large integers under time pressure. You practice recognizing how a target value sits relative to a repeating pattern and determining the adjustment needed to land on a compatible point in that pattern. It also drills error-free execution with big round-looking numbers, where slips are common.

This matters in quant interviews because trading and risk systems rely on discrete price grids, tick sizes, and lot sizes. Top trading firms expect candidates to rapidly align targets with these discrete constraints, without hesitation, while under intense time and accuracy pressure.

What it tests

When seeking the smallest integer greater than or equal to a target value that is divisible by a given number, the core idea is to use modular arithmetic to bridge between the target and the nearest multiple. The general structure is: for any integer $n$ and divisor $d$, the smallest integer at least $n$ and divisible by $d$ is $n + (d - (n \bmod d))$ if $n$ is not already a multiple, or just $n$ if it is. This works because $n \bmod d$ gives the excess over the last lower multiple, and $d - (n \bmod d)$ is the increment needed to reach the next one. The pattern holds because the set of all numbers congruent to $0 \pmod d$ forms a regular lattice, so every interval of length $d$ contains exactly one such number.

Practise this question with written feedback, or hear it in a spoken mock interview.

Get started free