JAVA Exceptions In which of the following package Exception class exist? java.util java.lang java.file java.net java.io java.util java.lang java.file java.net java.io ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Which exception is thrown when an array element is accessed beyond the array size? ArrayIndexOutOfBoundsException ArrayIndexOutOfBounds ArrayElementOutOfBounds None of these ArrayIndexOutOfBoundsException ArrayIndexOutOfBounds ArrayElementOutOfBounds None of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions The class at the top of exception class hierarchy is ................. Throwable Object ArithmeticException Exception Throwable Object ArithmeticException Exception ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Exception generated in try block is caught in ........... block. throws finally catch throw throws finally catch throw ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Which keyword is used to specify the exception thrown by method? catch throws throw finally catch throws throw finally ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions What will be the output of the following piece of code:class Person{ public void talk() {}}public class Test{ public static void main(String args[]){ Person p = null; try{ p.talk(); } catch(NullPointerException e){ System.out.print("There is a NullPointerException. "); } catch(Exception e){ System.out.print("There is an Exception. "); } System.out.print("Everything went fine. "); }} There is a NullPointerException. There is an Exception. There is a NullPointerException. There is a NullPointerException. Everything went fine. This code will not compile, because in Java there are no pointers. There is a NullPointerException. There is an Exception. There is a NullPointerException. There is a NullPointerException. Everything went fine. This code will not compile, because in Java there are no pointers. ANSWER DOWNLOAD EXAMIANS APP