Football
Food
General Knowledge
Math
python
100

Which club has won the most Champions League titles?

Real Madrid (13)

100

Which chocolate bar is the global bestseller?

Snickers

100

Name the Oceans of the World?

The Atlantic, Pacific, Indian, Arctic, and the Southern (Antarctic) oceans

100

What comes after a trillion?

Quadrillion

100

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

200

Which country has appeared in three World Cup finals, but never won the competition?

Netherlands

200

For what food is the Scoville scale used to measure spiciness?

Chili peppers

200

Name the National animal of India?

Tiger

200

How many minutes are in a full week?

10,080

200

Which keyword allows us to load a module in Python?

Import

300

With 202 clean sheets, which goalkeeper has the best record in the Premier League?

Petr Cech

300

What is the only fruit with the seeds on the outside?

Strawberry

300

Which planet has the most moons?

Saturn

300

What is the name of this sequence: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55…?

Fibonacci numbers / sequence

300

Give the output of the following code

for i in range(0,10,3):

print(i)

0 3 6 9

400

Which club is sometimes referred to as FC Hollywood?

Bayern Munich

400

What condiment was used for its medicinal qualities in the 1800s?

Ketchup

400

Name the first man to walk on the Moon?

Neil Armstrong

400

Who was the first mathematician to calculate pi?

Archimedes

400

Give the output of the following code.

a = "Python Quiz"

print(a[2:5])

tho

500

With 365 goals, who holds the record for top Bundesliga goalscorer of all time?

Gerd Muller

500

Sriracha is a type of popular hot sauce named for a city located in what country?

Thailand

500

What year did ww2 end?

1945

500

Who is considered the “Father of Geometry”?

Euclid

500

Which function can add elements to the end of a list?

Append()