Starter quiz

  • Which of these instructions is not a subroutine?
  • In computing, repeatedly executing instructions is known as ...
    • iteration  ✓
    • selection
    • sequence
  • ______ is the process of finding an error in your code and taking steps to fix the problem.
    • 'debugging' ✓
  • What is repeatedly running a sequence of instructions a set number of times known as?
    • count-controlled iteration  ✓
    • condition-controlled iteration
  • What value would be held by the ‘name1’ variable and the ‘name2’ variable at the end of this program?
    What value would be held by the ‘name1’ variable and the ‘name2’ variable at the end of this program?
    • name1 = Laura name2 = Sam
    • name1 = Sam name2 = Laura
    • name1 = Laura name2 = Laura
    • name1 = Sam name2 = Sam  ✓
  • When the value of a variable is updated in a program, it's previous value is ...
    • overwritten  ✓
    • saved
+