Across
- 2. Keyword _____ creates an object of the class specified to the right of the keyword.
- 4. Bytecode consumer
- 6. Lists and tables of values can be stored in _____.
- 10. The size, shape, color and weight of an object are considered _____ of the object.
- 11. Keyword _____ specifies that a variable is not modifiable.
- 12. The _____ statement in a called method can be used to pass the value of an expression back to the calling method.
- 15. A(n) _____ variable represents classwide information that is shared by all the objects of the class.
- 16. Each class declaration that begins with keyword _____ must be stored in a file that has exactly the same name as the class and ends with the .java file-name extension.
- 18. In Java, it is possible to have several methods with the same name that each operate on differenttypes or numbers of arguments. This feature is called method _____.
- 20. _____ are used to document a program and improve its readability.
- 21. The _____ statement selects among multiple actions based on the possible values of an integer variable or expression.
- 22. The number used to refer to a particular element of an array is called the element’s _____.
- 23. The _____ statement, when executed in a repetition statement, skips the remaining statements in the loop body and proceeds with the next iteration of the loop.
- 24. Scanner method _____ reads characters until a newline character is encountered, then returns those characters as a String.
- 25. If the loop-continuation condition in a for header is initially _____, the program does not execute the for statement’s body.
Down
- 1. Announce a new class or method
- 3. The _____ method is called by the garbage collector just before it reclaims an object’s memory.
- 5. Return type _____ indicates that a method will perform a task but will not return any information when it completes its task.
- 7. The command _____ from the JDK compiles a Java program.
- 8. allows a Java program to perform multiple activities in parallel.
- 9. Java applications begin execution at method _____.
- 13. Scanner method _____ returns a double value.
- 14. When a Java program is compiled, the file produced by the compiler ends with the _____ file extension.
- 15. The _____ of a declaration is the portion of a program that can refer to the entity in the declaration by name.
- 17. The ______command from the JDK executes a Java application.
- 19. OOD takes advantage of _____ relationships, where new classes of objects are derived by absorbing characteristics of existing classes then adding unique characteristics of their own.
