Coding Vocabulary

12345678910111213141516
Across
  1. 2. An instruction for the computer. Many commands put together make up algorithms and computer programs.
  2. 4. Part of a program that does not work correctly
  3. 7. A statement that only runs under certain conditions
  4. 8. A list of steps to finish a task
  5. 10. Putting commands in correct order so computers can read the commands
  6. 13. A named group of programming instructions. Functions are reusable abstractions that reduce the complexity of writing and maintain programs.
  7. 14. A loop that continues to repeat while a condition is true.
  8. 16. To write code, or to write instructions for a computer
Down
  1. 1. The action of doing something over and over again
  2. 3. Finding and fixing the problems in an algorithm of program
  3. 5. An action that causes something to happen
  4. 6. The art of creating a program
  5. 9. Do something again
  6. 11. A statement that a program checks to see if it's true or false. If true, an action is taken. Otherwise, the action is ignored.
  7. 12. A command that tells you to do something only up to the point that something becomes true.
  8. 15. An algorithm that has been coded into something that can be run by a machine