This tradition involves carving pumpkins, wearing costumes, and children going door-to-door asking for candy in the Fall
What is Halloween?
You see me once in June, twice in November, but not at all in May. What am I?
What is the letter 'E'?
What is the output to: print(2 + 4 * 7)
What is 30?
This leader delivered the “I Have a Dream” speech.
Who is Martin Luther King Jr.?
This planet is known as the Red Planet.
What is Mars?
This Indian festival of lights celebrates the victory of light over darkness
What is Diwali?
A bat and a ball cost $1.10 total. The bat costs $1 more than the ball. How much does the ball cost?
What is 5 cents?
Given: numbers: [0, 1, 2, 3, 4, 5], what does print(numbers[-2:])
What is [4, 5]
This amendment to the U.S. Constitution abolished slavery.
What is the 13th Amendment?
This language has the most native speakers in the world.
What is Mandarin Chinese?
This Mexican holiday honors deceased loved ones with altars and offerings
What is Día de los Muertos?
What is the next number in this pattern:
2, 6, 7, 21, 22, 66, ?
What is 67?
What is the output: print({i: i*i for i in range(3)})
What is {0: 0, 1:1, 2: 4}
This organization, founded in 1909, is one of the oldest civil rights groups in the U.S.
What is the NAACP?
This widespread concern involved computers failing due to representing years with two digits.
What is the Y2k bug (Millennium bug)?
A cultural celebration features men dressed in traditional kilts, playing bagpipes, and competing in strength-based athletic events like tossing heavy logs
What is Scotland?
You have a 3-gallon jug and a 5-gallon jug. How do you measure exactly 4 gallons?
What is: fill 5 → pour into 3 → empty 3 → pour 2 into 3 → fill 5 → pour into 3 until full (leaving 4)
t = (1, 2, [3, 4])
t[2].append(5)
print(t)
What is (1, 2, [3, 4, 5])
This Supreme Court case declared segregation in public schools unconstitutional.
What is Brown v. Board of Education?
What element has the period table symbol of ‘Sn’?
What is Tin?
A festival involves lighting lanterns, fireworks, and family gatherings to mark the end of a lunar calendar year. Similar celebrations occur across multiple East and Southeast Asian countries with overlapping symbolism and timing
What is Lunar New Year?
A farmer has chickens and goats. There are 20 heads and 56 legs. How many goats are there?
What is 8 goats?
def f():
print("A")
return False
def g():
print("B")
return True
print(f() and g())
What is:
A
False
This doctrine, upheld in Plessy v. Ferguson, justified racial segregation.
What is “separate but equal”?
It’s the only continent with no active volcanoes
What is Australia?