Skill based Lab Course: Object Oriented Programming with Java

12345678910111213141516171819202122232425
Across
  1. 2. Keyword _____ creates an object of the class specified to the right of the keyword.
  2. 4. Bytecode consumer
  3. 6. Lists and tables of values can be stored in _____.
  4. 10. The size, shape, color and weight of an object are considered _____ of the object.
  5. 11. Keyword _____ specifies that a variable is not modifiable.
  6. 12. The _____ statement in a called method can be used to pass the value of an expression back to the calling method.
  7. 15. A(n) _____ variable represents classwide information that is shared by all the objects of the class.
  8. 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.
  9. 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 _____.
  10. 20. _____ are used to document a program and improve its readability.
  11. 21. The _____ statement selects among multiple actions based on the possible values of an integer variable or expression.
  12. 22. The number used to refer to a particular element of an array is called the element’s _____.
  13. 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.
  14. 24. Scanner method _____ reads characters until a newline character is encountered, then returns those characters as a String.
  15. 25. If the loop-continuation condition in a for header is initially _____, the program does not execute the for statement’s body.
Down
  1. 1. Announce a new class or method
  2. 3. The _____ method is called by the garbage collector just before it reclaims an object’s memory.
  3. 5. Return type _____ indicates that a method will perform a task but will not return any information when it completes its task.
  4. 7. The command _____ from the JDK compiles a Java program.
  5. 8. allows a Java program to perform multiple activities in parallel.
  6. 9. Java applications begin execution at method _____.
  7. 13. Scanner method _____ returns a double value.
  8. 14. When a Java program is compiled, the file produced by the compiler ends with the _____ file extension.
  9. 15. The _____ of a declaration is the portion of a program that can refer to the entity in the declaration by name.
  10. 17. The ______command from the JDK executes a Java application.
  11. 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.