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