Learning Java with NR Classes,Pune - 9730381255

1234567891011121314151617181920
Across
  1. 2. A loop used for definite iteration.
  2. 3. An access modifier allowing global access.
  3. 7. Selects between multiple blocks of code.
  4. 10. Skips current loop iteration.
  5. 11. Declares a constant or prevents method override.
  6. 14. because of this JVM can call main method directly
  7. 15. A keyword that starts a loop which executes at least once.
  8. 16. Exits a method and optionally returns value.
  9. 17. The smallest integer data type in Java.
  10. 18. A blueprint from which objects are created.
  11. 20. A conditional statement that executes when the condition is true.
Down
  1. 1. A data type that stores true or false.
  2. 4. A data type for integers.
  3. 5. Specifies method has no return value.
  4. 6. Used to define alternate path when if fails.
  5. 8. A loop that checks the condition before execution.
  6. 9. Used inside switch to define a condition.
  7. 10. A data type that holds a single character.
  8. 11. A data type for decimal values.
  9. 12. Used to create objects.
  10. 13. Entry point method of a Java program.
  11. 17. Exits the current loop or switch.
  12. 19. A class used to store text.