JAVA

1234567891011121314151617181920212223242526272829303132333435363738394041424344
Across
  1. 2. Using one identifier to refer to multiple items in the same scope. In the Java(TM) programming language, you can use same method name with different arguments or return type.
  2. 6. Binding (or wrapping) code and data together into a single unit is known as
  3. 7. is a special type of method that is used to initialize the object.
  4. 13. Hiding internal details and showing functionality is
  5. 17. block is used to handle the Exception
  6. 19. --------- is a special type of program that is embedded in the webpage to generate the dynamic content
  7. 20. keyword can be used to refer current class instance variable or method.
  8. 22. inserting any value in the wrong index of array, it would result in
  9. 24. Classes maintain one copy of class variables regardless of how many instances exist of that class.
  10. 25. refer primitive datatype in JAVA
  11. 27. Scanner class belongs to the package
  12. 31. method is used to perform cleanup processing just before the object is garbage collected.
  13. 32. Providing a different implementation of a method in a subclass of the class that originally defined the method.
  14. 34. who developed JAVA language
  15. 35. keyword is used to apply restrictions on class, method, and variable.
  16. 37. a lightweight sub-process, the smallest unit of processing.
  17. 40. block is always executed whether an exception is handled or not
  18. 41. which is the superclass of all classes
  19. 43. Collection Java automatically frees the used memory for other uses.
  20. 44. A data element whose value is an address.
Down
  1. 1. refer primitive datatype in JAVA and to an expression or variable that can have only a true or false value.
  2. 3. powerful mechanism to handle the runtime errors so that normal flow of the application can be maintained.
  3. 4. keyword Used at the beginning of a source file to specify classes or entire Java packages to be referred to later without including their package names in the reference
  4. 5. When one task is performed by different ways known as
  5. 8. The wrong formatting of any value may occur
  6. 9. default package included in all projects of JAVA
  7. 10. is a process of executing multiple threads simultaneously.
  8. 11. Any entity that has state and behavior is known as
  9. 12. to set the data of a variable (involves the equal sign).
  10. 14. block is used to enclose the code that might throw an exception. It must be used within the method.
  11. 15. keyword Included in a class declaration to specify one or more interfaces that are implemented by the current class. A class inherits the types and abstract methods declared by the interfaces.
  12. 16. keyword Used in a class declaration to specify the superclass; used in an interface declaration to specify one or more super interfaces.
  13. 18. the ----------- is accessible within a package and outside the package but through inheritance only
  14. 21. divide any number by zero, there occurs
  15. 23. first official name given to JAVA language was
  16. 26. keyword is used to explicitly throw an exception
  17. 28. The -------- is accessible only within class
  18. 29. The------------- is accessible only within package
  19. 30. Collection of objects is called.It is a logical entity.
  20. 33. When one object acquires all the properties and behaviors of parent object known as
  21. 36. variable/A variable which is created inside the class but outside the method
  22. 38. is a group of similar types of classes, interfaces, and sub-packages.
  23. 39. The -------------is accessible everywhere
  24. 42. can be used to refer immediate parent class instance variable or method.