CS5004 P3-B Puzzle

12345678910111213
Across
  1. 3. method that defines multiple methods with the same name, but different signature
  2. 4. type of error that produces wrong result
  3. 6. tells compiler to allocate memory space for variable based on its data type
  4. 9. also called a general class or parent
  5. 10. variable of a supertype can refer to a subtype object
  6. 11. inherits accessible data fields and methods from a superclass
  7. 13. method that defines with same name and same return type
Down
  1. 1. type defined by a subclass
  2. 2. type of error causing program to abort
  3. 5. initializes an object for a class
  4. 7. assign a value to variable i.e. x = 1;
  5. 8. type defined by its superclass
  6. 12. type of error detected by compiler