AS programming key words

1234567891011121314151617181920
Across
  1. 2. data type - a single letter, digit or symbol
  2. 3. run a sequence of code based on whether a condition is true or not.
  3. 4. Create a variable and assign a datatype to it.
  4. 6. data type - text
  5. 8. an identifier used in code to access a value that does not change.
  6. 11. data type - a decimal number
  7. 12. the datatype returned by Console.Input()
  8. 16. A name used to identify something in code
  9. 18. A subroutine that does something but does not return a value
  10. 19. joining two strings together
  11. 20. repeat a sequence of code multiple times.
Down
  1. 1. a variable used to pass data into a subroutine
  2. 5. setting a variable to a new value
  3. 7. a named place in memory where values are stored. The names are used to access and change the values in a program
  4. 9. A subroutine that returns a value
  5. 10. change a value from one data type to another
  6. 12. a set of instructions that are executed one after another.
  7. 13. data type - whole number
  8. 14. data type - a decimal number
  9. 15. data type - True or False
  10. 17. a symbol that determines what operation should be performed