Java Vocabulary

123456789101112131415161718
Across
  1. 2. verbs/actions/work a class can do
  2. 5. The variables/actual values in a method or constructor call (2 words)
  3. 9. variables passed between calling and receiving object, between the parenthesis
  4. 10. variable type for whole numbers
  5. 12. The variables inside the parenthesis in a method or constructor header (2 words)
  6. 14. adjectives used to describe the object, they become variables
  7. 15. Variable declared at the top of the class, available for the entire class, associated with attributes
  8. 16. has same name as class, sets up instance variables
  9. 18. What is required to access a method belonging to another class, symbol (two words)
Down
  1. 1. The top line when you get ready to code a method, includes access, return type, name, formal parameters (2 words)
  2. 3. variable type for true/false values
  3. 4. variable type for floating point (decimal) numbers
  4. 6. Using the + to put together two Strings
  5. 7. accessor type that prevents code from outside the class from using the method/variable
  6. 8. template for objects of this type
  7. 11. At the end of every Java statement
  8. 13. accessor type that allows code to use the method outside of the class
  9. 17. variable type for words