CSA Unit 1 Vocab

123456789101112131415161718192021222324252627282930
Across
  1. 2. The blueprint for an object
  2. 4. Ends each statement in a Java program
  3. 7. What goes before the parameter list (String [ ] args) in the header of our first method
  4. 8. The keyword used with a constructor call for Objects only
  5. 11. A block of code used to initialize an Object
  6. 14. call How you access a method in Java
  7. 15. A text value surrounded with quotation marks
  8. 18. Used to send information to methods and constructors
  9. 19. The built in method for calculating the absolute value
  10. 20. A value (String, int, boolean, or double) used directly in the code
  11. 24. The primitive data type to hold true or false values
  12. 25. Console input from the keyboard
  13. 26. Used to store a value or reference in Java code
  14. 28. The object data type to hold text information
  15. 29. The primitive data type to hold counting numbers
  16. 30. The percent sign operator
Down
  1. 1. The fancy name for the = sign
  2. 3. Console output that ends on the same line
  3. 5. The name of the first method
  4. 6. Used to read text values. Initialized with a parameter to name the source
  5. 9. call What goes after the new keyword when initializing an object.
  6. 10. The built in method for calculating exponents
  7. 11. The process to convert Java to byte code
  8. 12. The primitive data type to hold numbers with a decimal
  9. 13. Console output that ends on the next line
  10. 16. Used to calculate arithmetic or boolean logic
  11. 17. A block of code that represents some action
  12. 21. All created data types in Java
  13. 22. simple values in java like numbers and true/false
  14. 23. The built in method for calculating a square root
  15. 27. What is returned when using % between two numbers eg (42 % 5)