JAVA

12345678910111213141516171819202122232425
Across
  1. 2. Binding done during runtime
  2. 5. A real-world entity created from a class
  3. 7. Keyword used to create an object
  4. 10. Used to implement an interface
  5. 12. A class that cannot be inherited
  6. 13. The parent class is also called
  7. 15. A method that cannot be overridden
  8. 16. A class that contains abstract methods
  9. 17. Method that needs an object to be called
  10. 18. Keyword used to stop inheritance
  11. 19. Method that belongs to the class, not object
  12. 20. Parent class reference keyword
  13. 24. Keyword used to stop method overriding
  14. 25. Interface supports ______ inheritance in Java
Down
  1. 1. Child class reference keyword (current object)
  2. 3. Used to inherit a class in Java
  3. 4. A class that cannot be instantiated
  4. 6. A special method used to initialize objects
  5. 8. Blueprint used to create objects in Java
  6. 9. A method without body (only declaration)
  7. 11. Interface methods are by default ______ (Java 8+)
  8. 14. A variable shared among all objects of a class
  9. 21. Relationship where one class acquires properties of another
  10. 22. The child class is also called
  11. 23. Binding done during compilation time