Object Oriented Programming 20-21

123456789101112131415
Across
  1. 1. __ can be achieved in Java using Dynamic Method Dispatch.
  2. 3. ___ is an instance of a class.
  3. 5. __ keyword used to prevent method to be overridden.
  4. 8. __ initializes an object immediately upon creation.
  5. 10. ___ keyword is used to create a class from interfaces.
  6. 11. __ super class/classes can be possible in Java.
  7. 13. ___ are use to implement Multiple inheritance.
  8. 15. ___ is a superclass of all other classes.
Down
  1. 2. ___ are containers for classes.
  2. 4. ___ keyword used to call super class member's.
  3. 6. __ keyword used to access the classes from different packages.
  4. 7. __ are immutable.
  5. 9. __ is a reference variable that refers to the current object.
  6. 12. ___ members of one package can not be access in another package subclass.(excluding private members)
  7. 14. __ object can be possible for Abstract class and interfaces.