5 exercises on saying performance metrics aloud — availability "nines", multipliers, basis points, throughput acronyms, and orders of magnitude.
Key patterns
99.9% / 99.999% — "three nines" / "five nines"
10x — "ten times" or "ten ex"
bps (finance) — "basis points" (1 bp = 0.01%)
QPS — "queries per second" (cue-pee-ess)
Order of magnitude — a factor of ten
0 / 5 completed
1 / 5
An SLA promises 99.9% availability. What is the idiomatic shorthand spoken in SRE teams?
99.9% = "three nines":
The shorthand counts the number of leading 9 digits in the percentage. 99.9% has three 9s, so it is read "three nines".
"three nines" ≈ 8.76 hours of downtime per year.
You can also read it literally: "ninety-nine point nine percent".
The full availability ladder:
99% — "two nines" — ~3.65 days/year
99.9% — "three nines" — ~8.76 hours/year
99.99% — "four nines" — ~52.6 minutes/year
99.999% — "five nines" — ~5.26 minutes/year
Why not the others? "Triple nine" is not standard for SLAs (it is a UK emergency number). "Nine nine point nine" reads digits awkwardly. The "nines" idiom is universal in DevOps, so master it: "we are targeting three nines this quarter."
2 / 5
A capacity report says throughput jumped 10x. How is "10x" read aloud?
10x = "ten times" (or casually "ten ex"):
The x after a number means a multiplication factor. It is read as "times" in careful speech and often as the letter "ex" in casual tech talk.
"a ten-times improvement" / "a ten-ex improvement" — both common.
The "10x engineer" idiom: a person allegedly ten times more productive — always read "ten-ex engineer". This is where "ex" became idiomatic.
Contrast with order of magnitude: "10x" is one order of magnitude; "100x" is two orders of magnitude. An order of magnitude is a factor of ten. "Ten percent" (option C) is the opposite scale (0.1x of growth), so do not confuse multiplier "x" with "%".
3 / 5
A trading-systems spec mentions a fee of 25 bps. What does "bps" mean here and how is it said?
bps (finance) = "basis points":
Context decides the expansion of bps. In finance/fintech, bps means basis points, where 1 basis point = 0.01% (one hundredth of a percent).
Beware the clash: in networking, "bps" means bits per second (option A). Same letters, completely different meaning — let context guide you. In a payments or interest-rate discussion it is always basis points.
Collocations: "we cut the take rate by 30 bps", "spreads widened 5 bps", "a 50-bip hike" (a half-percent rate rise). The clipped spoken form "bips" is very common on trading desks. "Beats per second" and "bytes per second" do not apply to a fee.
4 / 5
A dashboard shows 12,000 QPS. How is "QPS" read, and what does it measure?
QPS = "queries per second":
QPS is read letter by letter — "cue-pee-ess" — and expands to queries per second, a throughput metric for databases, search systems and APIs.
"twelve thousand cue-pee-ess" — the natural reading of 12,000 QPS.
Closely related: RPS (requests per second), TPS (transactions per second).
Common collocations:
"the service peaks at fifty thousand QPS"
"we need to handle ten-K QPS" ("ten-kay queries per second")
"QPS dropped after the cache warmed up"
Reading large counts: 12,000 is "twelve thousand"; 1,200,000 QPS is "one point two million QPS" or "one-point-two-mil QPS". The invented expansions (quality per service, quick parse syntax, quad-precision seconds) are distractors — QPS is firmly "queries per second".
5 / 5
In an incident review someone says the new index made lookups two orders of magnitude faster. By roughly what factor did they improve?
Two orders of magnitude ≈ 100x:
An order of magnitude is a factor of ten (a power of 10). So:
one order of magnitude = 10x
two orders of magnitude = 10 × 10 = 100x
three orders of magnitude = 1,000x
Saying "two orders of magnitude faster" means roughly a hundredfold improvement — read aloud as "two orders of magnitude" or "a hundred times".
Useful phrasing:
"that is an order-of-magnitude difference" — about 10x, used loosely to mean "a big gap".
"they are in the same ballpark / same order of magnitude" — within ~10x of each other.
Why it matters in speech: engineers use "orders of magnitude" to compress huge ratios into a clear phrase. Mixing it up (thinking two orders = 20x) badly understates the effect. Each order multiplies by ten, not adds ten.