Christmas song by Elvis Presley.
What is Blue Christmas?
print(Hello world)
What is no quotes?
1st Grade: Inventor of the lightbulb in 1879.
Who is Thomas Edison?
Sugar was originally considered a ____, not a sweetener.
What is spice?
One who fibs.
What is rail?
Airline primarily in the East Coast of the US.
What is Jet Blue?
printf("Hello world")
What is no printf in Python?
2nd Grade: The comparative and superlative forms of the word "big".
What are bigger and biggest?
Grams of sugar in a strawberry (+- 0.15 grams).
What is 0.6 grams?
There are 9 movies in this horror franchise revolving around the fictional serial killer John Kramer.
What is was?
When a business spends and owes more money than is being earned.
What is in the red?
array = [1, 2, 3]
for i in range(len(array), -1, -1):
print(array[i])
What is out of bounds/off by one error?
3rd Grade: If a shopping cart contains 1 apple, 2 bananas, 3 oranges, and 4 hot dogs, this is the percent of the cart's total contents that is fruit.
What is 60%?
Grams of sugar in a lemon (+- 0.15 grams).
A utensil that is used when drinking.
What are warts?
What is Black Swan?
# Sort the array and print it.
array = [1, 2, 3, 1]
sorted(array)
print(array)
What is sorted() returns a new array and does not store it?
4th Grade: The kingdoms of the United Kingdom.
What are England, Scotland, Wales, and Northern Ireland?
Grams of sugar in 6 sugar packets (+- 3 grams).
What is 24 grams?
The second amendment permits these in the United States.
What is snug?
What is tickled pink?
# Calculate the fibonacci number 0, 1, 1, 2, ...
def recur_fibo(n):
if n == 0:
return n
else:
return(recur_fibo(n-1) + recur_fibo(n-2))
What is wrong base case (should be if n <= 1)?
5th Grade: How old is the Earth (+- 1 billion years)?
What is 4 billion?
The common name for monosaccharides.
What are simple sugars?
These sometimes occur at the start of an episode to explain the previous plotline.
What is a spacer?