Java Keywords

1234567891011121314151617181920212223242526272829303132333435
Across
  1. 2. keyword to inform that the method may throw an exception
  2. 6. uncaught exceptions are handled by
  3. 7. to create variable arguments
  4. 8. maximum no of varargs per method
  5. 10. function which returns reference of thread from where it is called
  6. 12. method that wakes up thread that called wait()
  7. 14. class used for string handling that is thread safe
  8. 16. every program starts with at least one thread that is
  9. 17. to declare a variable as a constant
  10. 19. a.equals(b) return type
  11. 20. method to check the state of thread whether running or not
  12. 24. instance variable in a.length
  13. 26. class used for string handling that is not synchronized
  14. 28. block which monitors for exception
  15. 29. interface for implementing multithreading concept
  16. 30. keyword for Inheritance
  17. 32. Box b1; b1 is a??
  18. 34. keyword used for essential global variables
  19. 35. default access specifier within a package
Down
  1. 1. block that catches the thrown exception
  2. 3. equals() check for what equivalence
  3. 4. super class of all class
  4. 5. Same method specifications
  5. 8. final keyword used to prevent (between super and sub classes)
  6. 9. which methods are used to enable only one thread at a time
  7. 11. Same method name with different types of argument or return type
  8. 13. interface can have what variables
  9. 15. final keyword prevents
  10. 18. keyword for Interface
  11. 21. Object of classes
  12. 22. example method for timed waiting
  13. 23. interface used for writing and reading objects into/from a file
  14. 25. type of stream used for binary reading and writing
  15. 27. Civilized form of goto
  16. 31. keyword used to call superclass constructor
  17. 33. method that wakes up all thread that called wait() on same object