Starter Quiz

Question 1 of 6
1 of 6
What will be the output when this program is run?
1234567
num1 = 5 num2 = 10 if num1 < 6 and num2 > 8: print("That is True") else: print("That is False")
Code colour

When programmers write code, they use a special tool called an IDE (Integrated Development Environment). In an IDE, different colours are used to help programmers understand the code:


  • • Blue - numbers and boolean values
  • • Green - strings
  • • Purple - keywords
Select one answer
What operator is being used in the selection statement?