A 4-bit binary quiz tests four-digit base-two to decimal conversion under a fixed rule set, and the Binary Decoder Game on Lizely runs exactly five of those codes — 0001, 0011, 0110, 1010, and 1111 — so the entire run is reproducible. Each round shows four binary digits and asks for the matching decimal value, with the place values running 8, 4, 2, and 1 from left to right. A correct answer adds 200 points and advances immediately; one wrong answer clears your entry and leaves the same code on screen, while a second wrong answer deadlocks the run until you restart. The clean route through all five rounds lands on exactly 1,000 points, which is the maximum score and the benchmark for anyone using the tool as a base-two practice drill. Because the codes never change, the path is short enough to repeat and the score is honest enough to chase across sessions.

What a 4-Bit Binary Quiz Actually Tests
A 4-bit binary quiz measures one specific skill: turning a string of four zeros and ones into its decimal equivalent. The four digits cap every answer at 15, so a quiz at this scope can fit every possible nibble into a single conversion table. The skill has two layers. The first layer is reading place values in the right direction, because the leftmost bit carries the highest weight and each step right halves the weight. The second layer is summing only the bits that are set and ignoring the zeros. The product description for the Binary Decoder Game makes both layers visible: the four digits display in large monospaced text and the decimal entry has an accessible label, so there is no ambiguity about which digit sits in which position.
Because every answer in a 4-bit binary quiz is between 0 and 15, the whole exercise is short. You are not juggling long strings or trying to remember big-endian conventions — you are deciding which of four small weights to add together, five times in a row. That tight range is exactly what makes the format useful as a study drill, a quick warm-up before a programming interview, or a focused classroom activity for students who are meeting base two for the first time.
How the Binary Decoder Game Runs Five Codes
The Binary Decoder Game presents exactly five codes in order, and the order is locked so the winning sequence is always the same. Each round displays one four-bit code and a decimal entry field. You type your answer, press Enter, and either advance or stay on the same code if your answer was wrong. The accepted answers run from 1 to 15 because the lowest fixed code is 0001 and the highest is 1111. Mouse and touch users can click the on-screen digit buttons and Submit; keyboard users type decimal digits directly, use Backspace or Delete to edit, and press Enter to submit. There is no canvas, no timer, no audio, and no account to register — the entire game runs locally in the browser.
| Round | Binary code | 8s place | 4s place | 2s place | 1s place | Decimal answer |
|---|---|---|---|---|---|---|
| 1 | 0001 | 0 | 0 | 0 | 1 | 1 |
| 2 | 0011 | 0 | 0 | 1 | 1 | 3 |
| 3 | 0110 | 0 | 1 | 1 | 0 | 6 |
| 4 | 1010 | 1 | 0 | 1 | 0 | 10 |
| 5 | 1111 | 1 | 1 | 1 | 1 | 15 |
The set is intentional. It walks the place values in increasing coverage — round 1 isolates the 1s place, round 2 turns on the 2s place alongside it, round 3 turns on 4s and 2s together, round 4 skips back to 8s and 2s, and round 5 lights up every position at once. Readers who want a deeper rules walk-through can read the full Binary Decoder Game rules guide, which spells out the input limits, score formula, and restart behavior in the same terms used by the game itself.
How to Score 1,000 on the Five Rounds
- Read the four binary digits from left to right and assign them the weights 8, 4, 2, and 1 in that order.
- Type the decimal sum using the digit keys; the entry accepts at most two decimal digits because every answer fits in the 0 to 15 range.
- Press Enter to submit. A correct answer adds 200 points and immediately advances to the next code.
- If your answer is wrong, the entry clears but the same code stays visible — type a new attempt and press Enter again. The first miss is recoverable.
- Repeat the read-type-submit loop for all five codes. The clean route 1, 3, 6, 10, 15 finishes at exactly 200 points × 5 rounds = 1,000 points.
The score formula is intentionally simple: every correct submission is worth 200 points, so five correct submissions in a row produce exactly 1,000, and a single mistake does not subtract from the running total but does burn one of your two lives. If you miss a second time on any code, the run deadlocks and only Restart will return you to round 1 with a fresh score and a zero mistake count. Your best result stays in localStorage so you can compare runs across sessions without signing in.
Where Place Values Come From in Base Two
Binary is a positional number system with radix 2, which means each new bit doubles the accumulated value and then adds either zero or one. NIST IR 8354 describes binary digits and base-two groupings as the foundation of digital data representation, so the place-value reading you use in the quiz is not a game-specific shortcut — it is the same method used in every binary-to-decimal converter. Because the radix is two, the weights in a four-bit code are 2³, 2², 2¹, and 2⁰, which simplify to 8, 4, 2, and 1. You can prove the method on round 4: read 1010 as 1×8 + 0×4 + 1×2 + 0×1 = 8 + 0 + 2 + 0 = 10.
The MDN documentation for the JavaScript parseInt function independently confirms that a digit such as 2 is invalid in a binary numeral, which means the only characters the decoder will ever show in any of the five rounds are 0 and 1. That constraint is what keeps the answer range so small and what makes the quiz feel like a quick drill rather than a long calculation. If you ever see a 2 or higher in a four-bit code, the prompt itself is wrong, because the binary alphabet has only two symbols.
Pitfalls When Converting Four-Bit Codes
The most common mistake on a 4-bit binary quiz is reading the place values in the wrong order, especially when the rightmost bit is 1 and feels like it should weigh more than the others. Always start at the left with 8 and halve the weight at each step; do not let a stray 1 trick you into reading 2 or 4 first. Another pitfall is treating a leading zero as wasted effort. Dropping leading zeros never changes the decimal value of a code, so 0011 still equals 3 whether you read it as a four-bit pattern or as the shorter 11. The Binary Decoder Game caps input at two decimal digits, so type only the digits of your answer.
You should also watch your input length. The entry accepts at most two decimal digits because every answer fits in the 0 to 15 range, so use Backspace or Delete to remove the last digit before pressing Enter if you notice a stray character. Finally, remember that the boss key is a double-press of Escape, not a single press; press it twice quickly to swap to the spreadsheet screen and twice again to come back to your current code.
Why a Fixed-Set Quiz Works for Drilling
A fixed-set quiz like the Binary Decoder Game has a real advantage over random four-bit drills: every run starts from the same code and ends on the same number, so a learner can compare sessions honestly. If you score 600 today and 1,000 next week, you know the gain came from better conversion and not from an easier draw. The five codes also span the useful range of place values: 0001 tests the 1s place alone, 0011 tests 1s and 2s together, 0110 tests 2s and 4s, 1010 tests 8s and 2s, and 1111 tests all four places at once. Practicing this exact set covers every position exactly once in 1111 and at least once across the others, which is a tighter curriculum than reviewing random nibbles one at a time.
The five-round length also fits the working memory limits most people hit when learning base two. Each round presents a fresh four-bit code, but the conversion rule stays the same, so you build pattern recognition without re-learning the method every time. The game stores your best score in localStorage so you can track improvement across sessions without an account, and the absence of a timer means you can think through each code at your own pace. For learners who want a wider number puzzle after they finish, the same site hosts adjacent challenges such as Number Sequence Quiz, Magic Square, and Math Maze, each of which uses a similar keyboard-first, locally-runnable format.