Science
Dance
Maths
Geography
Computer Science
100

What is the periodic table symbol for Sodium

Na

100

What does canon mean?

when performing a sequence of movements, group members do the same order of moves but at a different time

100

9x9

81

100

What are the 4 main points of a compass

North, East, South, West

100

print(hello world)

Find the syntax error

It's missing speech marks

print("Hello world")

200

What is the chemical symbol for nitrogen

N

200

What does unison mean in dance?

partners do the same moves at exactly the same time, perfectly matching each other's timing and movements

200

3x(2+8)

30

200

What do contour lines on a map show?

The distance between contour lines shows how steep or flat the land is.

  • If the contour lines are very far apart, it means the land is flat.
  • If the contour lines are close together, it means the land is steep.
200

print((5 * 2) + (4 - 3)) 

What would be output?


11

300

What letter is not on the periodic table?

J

300

What do levels mean in dance?

 height at which a dancer performs movements relative to the floor, typically categorized as high, medium, or low

300

If buns are in packs of 5 and burgers are in packs of 4. How many packs of burgers and buns do I need to buy to have an equal amount of buns and burgers. 

Buns = 4

Burgers = 5

300

What does a HIC and LIC mean?

High income country/ Low income country

300

age = 13

if age >= 13:

                 print("You are officially a teenager!")

else:

      print("You're not a teenager")


What would be output?


Num 2 = 22


You are officially a teenager!

400

How many chemical elements do you think there are?

118

400
What are dynamics?

refers to the execution of movements with speed, power and fluidity to enhance the overall energy and impact of the routine

400

A shop has a 20% sale.

A TV costs £400.

What's its sale price

£320

400

What does the word population mean?

Population means the number of people living in a certain area.

400

What does this sign mean <=

Less than or equal to

500

What is the rarest element on earth?

astatine 

500

Name 5 different dance genres in the UK

Ballet, Tap, Jazz, Modern, ballroom, hip hop, Accept other forms too
500

Expand and simplify...

3x(x+2) + 2x



3x2+8x

500

What are some examples of primary industries?

Primary industry includes farming, fishing and mining.

500

If user enters 5 and 6 what would be output?

num1= input("Enter a number")

num2 = input("Enter another number")

answer = num1 + num2

print(answer)



56

Python reads this as a string not an integer.