Across
- 5. Variables defined inside methods, constructors or blocks are called local variables. The variable will be declared and initialized within the method and the variable will be destroyed when the method has completed.
- 7. The 'new' keyword is followed by a call to a constructor. This call initializes the new object.
- 9. A word
- 11. a coding language
- 13. variables declared within a class, outside any method, with the static keyword.
- 15. the ‘new’ keyboard to create the object
- 19. includes name and object type
- 20. One symbol, letter, or number
Down
- 1. variables within a class but outside any method. These variables are initialized when the class is instantiated. Instance variables can be accessed from inside any method, constructor or blocks of that particular class.
- 2. getting rid of bugs in a program
- 3. Open for everyone
- 4. default ___________
- 6. holds different data types
- 8. to create multiple versions of methods or constructors
- 10. Describes the behavior/states that object of its type support
- 12. organized list of data
- 14. A whole number with no decimals
- 16. the name of variables, methods, class, packages, and interfaces
- 17. A number with a decimal
- 18. have states and behavior
