Starter quiz

  • The data a variable holds can ______ throughout the running of a program.
    • change  ✓
    • not change
  • The `=` symbol in Python is used for...
    • assignment.  ✓
    • equations.
    • comparison.
  • Which of the following is an example of a string?
    • `100`
    • `True`
    • `3.14`
    • `"Hello world!"`  ✓
  • What name would be displayed when this Python program is run? ```name = "Izzy" name = "Lucas" name = "Izzy" print (name)```
    • `name`
    • `Izzy`  ✓
    • `Lucas`
  • What is the result of the following Python expression? ```10 + 5 * 2```
    • '20' ✓
  • What function is used to convert user input from a string to an integer in Python?
    • `input()`
    • `print()``
    • `int(input())`  ✓
    • `int()`
+