If you have ever found yourself staring at a screen, sweating over a flashing question mark or a bizarrely dancing potato, chances are you’ve played The Impossible Quiz. Created by Splapp-me-do, this flash-based brain-teaser became a cult classic in the late 2000s for one simple reason: it doesn’t test intelligence—it tests creativity, patience, and the ability to think entirely outside the box.
Among the 110 questions in the original game, few are as infamous as Question 63. The keyword “Impossible Quiz 63” is searched by thousands of frustrated players each month. Why? Because it is a perfect storm of misdirection, rapid mechanics, and one of the first major “skill gates” in the game.
In this article, we’ll break down everything you need to know about Impossible Quiz 63: what the question is, why it’s so hard, how to solve it, and the psychology behind its design.
Q: Can I cheat with an auto-clicker?
A: In theory, yes, but the game might register your click before the question loads, causing a different outcome. It’s safer to learn the timing.
Q: What happens if I click the wrong answer?
A: Immediate death. Back to Question 1. Lose one life (unless you’re out of lives, then game over). impossible quiz 63
Q: Is there a trick to slow down the bomb?
A: No. The bomb speed is hard-coded. Some players believed clicking the bomb itself would defuse it—that’s a myth. Clicking the bomb just kills you.
Q: Why is this question so famous?
A: Because it’s the first major “memory test” in the game. It separates casual players from those dedicated enough to use guides or brute-force memorization.
The Question:
When you first land on Question 63, the screen appears deceptively simple. The on-screen prompt reads:
“How many holes in a polo?”
Below it, you see four options:
At first glance, a “polo” could refer to a polo shirt, the sport of polo, or the mint with a hole in the middle. Most people think of the Polo mint (known as a Life Saver in the US). If you think of a mint with one hole in the center, the answer might seem like 1. But 1 isn't even an option.
This is the first layer of the trick.
Wait—before you click anything, you notice something else. The timer bar at the top left is moving. And not just moving—it's moving fast. Very fast. On most Impossible Quiz questions, the timer gives you a few seconds of grace. On Question 63, the fuse burns down in about 2 seconds.
If you don’t answer in under two seconds, the screen flashes, and you hear that dreaded “splash” sound of failure. You lose a life and are sent back to Question 1. The Impossible Quiz 63: Decoding the Madness of
So not only do you have to decipher the cryptic “how many holes in a polo” riddle, you have to do it almost instantly.
If you are building this in a game engine (like Unity or Flash), here are the technical specs:
A. Component Breakdown:
SecondHand transform.float baseSpeed = 6.0f; // degrees per second (360 / 60)
float currentAngle = 0.0f;
void Update()
// Variable speed logic
if (currentAngle > 350 && currentAngle < 10)
// Speed up near the top
transform.Rotate(0, 0, -baseSpeed * 2 * Time.deltaTime);
else if (currentAngle > 15 && currentAngle < 25)
// Slow down near the '3' (which is 90 degrees / 15 seconds on a standard clock,
// but represents '3 seconds' on a 60s wrap... wait, logic check!)
// Actually, 63 seconds = 3 seconds past the minute = pointing at 3.
// On a clock, the 3 is at 90 degrees.
// We make it slow down HERE to bait the click.
transform.Rotate(0, 0, -baseSpeed * 0.5f * Time.deltaTime);
B. The Collision Logic:
C. Audio Design: