Coding

123456789101112131415
Across
  1. 4. is an informal description of code or a concept that's intended for human reading
  2. 6. is a step by step set of instructions
  3. 7. is a symbol or words like "and", "or", and "not" that connects two or more booleans to make conditional decisions more specific
  4. 9. a collection of commands grouped together and given a name. the set of commands can then be run with just the name of the function whenever that set is needed
  5. 10. is a loop that runs a block of code as long as a given condition is true. When the condition is false, it stops running
  6. 13. runs a block of code over and over for a set number of times
  7. 15. the process of identifying and fixing the error
Down
  1. 1. is something that you test the results is true or false
  2. 2. the process of combining small parts of a program to solve a larger problem.
  3. 3. a value that can only be either true or false
  4. 5. telling the program to run a function
  5. 8. a block of code that will run only if something is true
  6. 11. is the order in which commands are given
  7. 12. is a specific action for the computer program to perform
  8. 14. is an error in the code