Quant Memo
Core

Self-Referential Quiz Puzzles

A class of logic puzzles where a multiple-choice question refers to its own answer or to other questions in the same quiz, requiring the solver to reason about consistency rather than outside facts.

Most quiz questions ask about the outside world; self-referential quiz puzzles instead ask about the quiz itself. A classic form: "The first question whose answer is B is question ___," with the answer choices being the question numbers themselves, or "How many questions in this quiz have the answer C?" with the answer choices being counts. Answering correctly requires no outside knowledge at all — only careful logical bookkeeping about which combination of answers across the whole quiz is internally consistent.

These puzzles are solved by trial and constraint propagation rather than direct calculation: you provisionally guess an answer to one question, work out what that guess forces onto other questions (since many questions reference each other), and check whether the resulting full set of answers is self-consistent — every question's stated condition actually holds given the answers you've assigned. If a contradiction appears (question 3 claims the answer to question 7 is D, but your working set has it as A), you backtrack and try a different assignment, the same kind of search-and-prune process used in solving Sudoku or verifying a satisfiability problem.

Interviewers use these puzzles to test a candidate's ability to hold multiple interdependent constraints in mind simultaneously and systematically check consistency, rather than to test any specific piece of math or finance knowledge — they reward patient, structured elimination over quick pattern-matching.

Self-referential quiz puzzles have questions that refer to answers elsewhere in the same quiz, so they're solved not by outside knowledge but by proposing a full set of answers and checking it for internal consistency, backtracking on any contradiction — a pure test of constraint-tracking and systematic elimination.

Related concepts

Practice in interviews

Further reading

  • Standard self-referential puzzle collections (e.g. 'A Self-Referential Aptitude Test')
ShareTwitterLinkedIn