Colors of the Rainbow
Debugging
Are you smarter than a 5th Grader?
Sugar Sugar
Reversal
100

Christmas song by Elvis Presley.

What is Blue Christmas?

100

print(Hello world)

What is no quotes?

100

1st Grade: Inventor of the lightbulb in 1879.

Who is Thomas Edison?

100

Sugar was originally considered a ____, not a sweetener.

What is spice?

100

One who fibs.

What is rail?

200

Airline primarily in the East Coast of the US.

What is Jet Blue?

200

printf("Hello world")

What is no printf in Python?

200

2nd Grade: The comparative and superlative forms of the word "big".

What are bigger and biggest?

200

Grams of sugar in a strawberry (+- 0.15 grams).

What is 0.6 grams?

200

There are 9 movies in this horror franchise revolving around the fictional serial killer John Kramer.

What is was?

300

When a business spends and owes more money than is being earned.

What is in the red?

300

array = [1, 2, 3]
for i in range(len(array), -1, -1):
    print(array[i])

What is out of bounds/off by one error?

300

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%?

300

Grams of sugar in a lemon (+- 0.15 grams).

What is 1.5 grams?
300

A utensil that is used when drinking.

What are warts?

400
One of Jenna's favorite movies that features Natalie Portman.

What is Black Swan?

400

# 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?

400

4th Grade: The kingdoms of the United Kingdom.

What are England, Scotland, Wales, and Northern Ireland?

400

Grams of sugar in 6 sugar packets (+- 3 grams).

What is 24 grams?

400

The second amendment permits these in the United States.

What is snug?

500
To be very pleased and appreciative.

What is tickled pink?

500

# 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)?

500

5th Grade: How old is the Earth (+- 1 billion years)?

What is 4 billion?

500

The common name for monosaccharides.

What are simple sugars?

500

These sometimes occur at the start of an episode to explain the previous plotline.

What is a spacer?