Quiz Entry - updated: 2026.07.30
What do HTTP status codes 200 and 500 mean, and what are their peg words?
200 → "noses" (n·s·s); 500 → "losses" (l·s·s).


Every web request comes back with a three-digit status code, and the first digit names its family: 2xx success, 3xx redirect, 4xx client error, 5xx server error.
- 200 OK — the request succeeded and here is your content; the quiet workhorse behind almost every page that loads.
2·0·0= /n/·/s/·/s/ → noses. - 500 Internal Server Error — the server hit an unexpected fault and gave up, the generic "something broke on our end".
5·0·0= /l/·/s/·/s/ → losses.
Together: a nose (200) that's all wins, a loss (500) when it breaks.