Core Java Day-1

12345678910111213141516171819
Across
  1. 4. A term refering to desktop development environment in eclipse
  2. 6. A template for similar objects
  3. 7. The java interpreter
  4. 8. A technique used to set-up the starting point for a program debugging in eclipse
  5. 11. members can be accessible to same package and subclasses of different package
  6. 13. The compiler which compiles the byte code into native code that is immediately executed.
  7. 14. keyword used to refer to the current object from any method within a class
  8. 15. This type of members can be accessible by using the class name
  9. 16. Java data type used to hold integer value ranging from -128 to +127
  10. 18. A method which is implemented to perform some housekeeping tasks before an object is garbage collected
  11. 19. The early name of Java
Down
  1. 1. A special method with the same name as the class
  2. 2. keyword used to define a set of keywords in a type safe manner
  3. 3. the type of variable declared inside a method or block
  4. 5. A method which is the entrypoint of your application
  5. 7. Superset of JRE which allows you to do both write and run programs.
  6. 9. Special blocks in java used to initialize members of class
  7. 10. operator used to check the type of an object at run time
  8. 12. Instance of a class
  9. 17. prevents namespace collision