Aiden Baker2

1234567891011121314151617
Across
  1. 2. A type that represents numbers with fractional parts.
  2. 3. A type that represents sequences of characters.
  3. 4. A special symbol that represents a simple computation like addition, multiplication, or string concatenation
  4. 5. A name that refers to a value.
  5. 7. A memory aid
  6. 8. To simplify an expression by performing the operations in order to yield a single value.
  7. 12. The set of rules governing the order in which expressions involving multiple operators and operands are evaluated.
  8. 14. A combination of variables, operators, and values that represents a single result value.
  9. 15. To join two operands end to end.
  10. 16. Information in a program that is meant for other programmers (or anyone reading the source code) and has no effect on the execution of the program.
  11. 17. One of the basic units of data, like a number or string, that a program manipulates
Down
  1. 1. An operator, denoted with a percent sign
  2. 3. A section of code that represents a command or action. So far, the statements we have seen are assignments and print expression statement.
  3. 6. A type that represents whole numbers.
  4. 9. A category of values.
  5. 10. A reserved word that is used by the compiler to parse a program
  6. 11. A statement that assigns a value to a variable
  7. 13. One of the values on which an operator operates.