10 Programming Revision

12345678910111213
Across
  1. 2. This error is only detected after or during the execution of a program
  2. 5. A storage location and an associated name anf contains a value
  3. 7. Usually represents a noun, such as a person, place or thing. It also defines the the properties and functionality of the object in general, in order for copies of that object be made during the runtime of the program
  4. 10. A set of instructions that performs a specific task for a main routine, requiring direction back to the proper place in the main routine on completion of the task.
  5. 12. This type o error is a bug in a program that causes it to operate incorrectly, but not to terminate abnormally (or crash)
  6. 13. A data type of a sequence of characters
Down
  1. 1. To correct defects in the code of a program
  2. 3. A data type of whole numbers
  3. 4. A classification identifying one of various types of data, such as real-valued, integer or Boolean
  4. 6. A defect in the code of a program
  5. 8. An error of a sequence of characters or tokens that is intended to be written in a particular programming language
  6. 9. A data type of either a true or false value
  7. 11. this type of loop is a “pre-test” loop, meaning that it only iterates upon the successful evaluation of its loop continuation condition.