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