java world

123456789101112131415
Across
  1. 7. a class that is defined inside another class
  2. 11. a variable defined in a class for which every object of the class has its own value
  3. 13. a method with the same name, but different arguments
  4. 15. a condition that is true after a method has been called
Down
  1. 1. a class that inherits variables and methods from a superclass but adds instance variables, adds methods, or redefines methods
  2. 2. automatically converting a primitive type value into a wrapper type object
  3. 3. an item of information that is specified to a method, when the method is called
  4. 4. a class that contains a primitive type value, such as an integer
  5. 5. an item of information that is specified to a method, when the method is called
  6. 6. for (Type variable: collection){
  7. 8. a loop that is contained within another loop
  8. 9. a sequence of characters
  9. 10. redefining a method in a subclass
  10. 12. relationship between a subclass and its superclass, the subclass is more specialized than the superclass
  11. 14. a method that sets parameters