Crossword Puzzles (Core Java Day-1)

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