Which club has won the most Champions League titles?
Real Madrid (13)
Which chocolate bar is the global bestseller?
Snickers
Name the Oceans of the World?
The Atlantic, Pacific, Indian, Arctic, and the Southern (Antarctic) oceans
What comes after a trillion?
Quadrillion
What is wrong in the following code? (consider correct indentation)
parents, babies = (1, 1)
while babies < 100
print ('This generation has {0}babies'.format(babies))
parents, babies = (babies, parents + babies)
: is missing
Which country has appeared in three World Cup finals, but never won the competition?
Netherlands
For what food is the Scoville scale used to measure spiciness?
Chili peppers
Name the National animal of India?
Tiger
How many minutes are in a full week?
10,080
Which keyword allows us to load a module in Python?
Import
With 202 clean sheets, which goalkeeper has the best record in the Premier League?
Petr Cech
What is the only fruit with the seeds on the outside?
Strawberry
Which planet has the most moons?
Saturn
What is the name of this sequence: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55…?
Fibonacci numbers / sequence
Give the output of the following code
for i in range(0,10,3):
print(i)
0 3 6 9
Which club is sometimes referred to as FC Hollywood?
Bayern Munich
What condiment was used for its medicinal qualities in the 1800s?
Ketchup
Name the first man to walk on the Moon?
Neil Armstrong
Who was the first mathematician to calculate pi?
Archimedes
Give the output of the following code.
a = "Python Quiz"
print(a[2:5])
tho
With 365 goals, who holds the record for top Bundesliga goalscorer of all time?
Gerd Muller
Sriracha is a type of popular hot sauce named for a city located in what country?
Thailand
What year did ww2 end?
1945
Who is considered the “Father of Geometry”?
Euclid
Which function can add elements to the end of a list?
Append()