Java Basic

1234567891011121314
Across
  1. 3. allows us to perform a single action in different ways multiple
  2. 5. ------ keyword is used to indicate that a variable or method is a class method
  3. 6. The access level of modifier is everywhere
  4. 7. A constructor which has a specific number of parameters is called
  5. 10. is a special method that is used to initialize objects
  6. 13. access level of modifier is only within the class. It cannot be accessed from outside the class
  7. 14. functions with the same name but different parameters then these functions are said to be method
Down
  1. 1. The access level of modifier is within the package and outside the package through child class
  2. 2. -----keyword is used to indicate that a variable holds a constan
  3. 4. If subclass (child class) has the same method as declared in the parent class, it is known as method------
  4. 8. is a process of hiding the implementation details and showing only functionality to the user
  5. 9. ---------Collection is process of reclaiming the runtime unused memory automatically
  6. 10. -------keyword is used to declare a class.
  7. 11. ---is a reference variable that refers to the current object.
  8. 12. A constructor is called when it doesn't have any parameter.