Q.1.
Which of this keyword must be used to inherit a class?
Q.2.
The wrapping up of data and functions into a single unit is called
Q.3.
What is the parent class of All Exceptions in JAVA
Q.4.
Choose the CORRECT exceptionString department="JTMK"; Integer no=Integer.parseInt(department);
Q.5.
Evaluate the following Java expression, if x=y=and z=10:++z + y - y + z + x++
Q.6.
What is the default value of a Boolean variable?
Q.7.
Output of following Java program?class Test{ public static void main (String[] args) { int arr1[] = {3}; int arr2[] = {3}; if (arr1 == arr System.out.println("Same"); else System.out.println("Not same"); }}
Q.8.
_____ is used to find and fix bugs in the Java programs.
Q.9.
Which of the following is not a Java features?