Brain Teasers Flashcards
Curveball questions with correct answers (38 cards)
Are you exhaling warm air?
.
Explain quantum electrodynamics in two minutes, starting now.
.
Given 20 ‘destructible’ light bulbs (which breaks at certain height), and a building with 100 floors, how do you determine the height that the light bulb breaks?
.
Given a dictionary of words, how do you calculate the anagrams for a new word?
.
Given the numbers 1 to 1,000, what is the minimum number of guesses needed to find a specific number, if you are given the hint ‘higher’ or ‘lower’ for each guess you make?
This is called binary search. Given an interval [a,b], your guess should be the middle element i.e. (𝑎+𝑏)/2 at each step. If your guess is right, then great! Otherwise, you should adjust your bounds of your current interval. If that specific number is “higher”, your new interval will be [(𝑎+𝑏)/2 +1,𝑏]. Similarly if it is “lower” then your new interval will be [𝑎,(𝑎+𝑏)/2−1]. You will keep guessing until the lower bound is greater than the upper bound, in other words, until your interval collapses.
How are M&M’s made?
.
How many ball bearings, each one inch in diameter, can fit inside a 747 aircraft?
.
How many bottles of beer are drank in the city over the week.
.
How many bricks are there in Shanghai? Consider only residential buildings.
.
How many cows are in Canada?
.
How many hair salons are there in Japan?
.
How many people are using Facebook in San Francisco at 2:30 pm on a Friday?
.
How many planes are currently flying over Kansas?
.
How many quarters would you need to reach the height of the Empire State building?
.
How many ridges are there around a quarter?
119 (they’re also called reeds)
How many smartphones are there in London?
.
How many times a day do a clock’s hands overlap?
22 times (every 65 minutes)
How many traffic lights are there in Manhattan?
.
How much money did residents of Dallas/Ft. Worth spend on gasoline in 2008?
.
How would you measure 9 minutes using only a 4 minute and 7 minute hourglass?
Flip both timers over. When the 4-min timer is empty, flip it over (the 7-min timer has 3 minutes left in the top). When the 7-min timer is empty, flip it over (there is now 1 minute left in the top of the 4-min timer). When the 4-min timer is empty for the second time, the 7-min timer has 1 minute worth of sand in the bottom half. Flip it over so there is now 1 minute in the top. When the 7-min timer empties, 9 minutes have elapsed.
If two cars are travelling in a two lap race on a track of any length, one going 60 mph and the other going 30 mph, how fast will the slower car have to go to finish at the same time as the faster car?
.
If you had 5,623 participants in a tournament, how many games would need to be played to determine the winner?
.
If you won the lottery, what would you do with the money?
.
Out of 25 horses, pick the fastest 3 horses. In each race, only 5 horses can run at the same time. What is the minimum number of races required?
.