GCSE CompSci Subprograms keywords

123456789101112
Across
  1. 7. The CT concept behind functions: achieving the value needed whilst hiding the details of how it was achieved
  2. 8. This is when the subprogram is actually executed
  3. 9. Any named group of instructions
  4. 10. The CT concept behind procedures: breaking a complex problem down into steps
  5. 12. A value sent back to the main program when the subprogram ends
Down
  1. 1. The name of the subprogram (or variable or constant)
  2. 2. A value received by the subprogram when it is called
  3. 3. A type of subprogram which does return a value
  4. 4. A type of subprogram which does not return a value
  5. 5. This is when the instructions that make up the subprogram are specified
  6. 6. A value passed in to the subprogram by the main program
  7. 11. The keyword which signifies the start of a subprogram definition