JAVA Exceptions public class Test{ public static void main(String args[]){ try{ int a = Integer.parseInt("four"); } }}Which exception could be handled by the catch block for above? NumberFormatException IllegalStateException ClassCastException None of these ArrayIndexOutOfBoundsException NumberFormatException IllegalStateException ClassCastException None of these ArrayIndexOutOfBoundsException ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Which exception is thrown when an array element is accessed beyond the array size? ArrayIndexOutOfBounds None of these ArrayElementOutOfBounds ArrayIndexOutOfBoundsException ArrayIndexOutOfBounds None of these ArrayElementOutOfBounds ArrayIndexOutOfBoundsException ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions In which of the following package Exception class exist? java.util java.lang java.net java.io java.file java.util java.lang java.net java.io java.file ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions What happen in case of multiple catch blocks? The superclass exception must be caught first. Either super or subclass can be caught first. None of these The superclass exception cannot caught first. The superclass exception must be caught first. Either super or subclass can be caught first. None of these The superclass exception cannot caught first. ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Given the code. What is the result when this program is executed?public class Test{ static int x[]; static{ x[0] = 1; } public static void main(String args[]){ }} ExceptionInInitializerError is thrown StackOverflowException is thrown IllegalStateException is thrown ArrayIndexOutOfBoundsException is thrown None of these ExceptionInInitializerError is thrown StackOverflowException is thrown IllegalStateException is thrown ArrayIndexOutOfBoundsException is thrown None of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions The class at the top of exception class hierarchy is ................. ArithmeticException Exception Throwable Object ArithmeticException Exception Throwable Object ANSWER DOWNLOAD EXAMIANS APP