JAVA Exceptions Which keyword is used to explicitly throw an exception? throw throwing catch try throw throwing catch try ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions In which of the following package Exception class exist? java.util java.file java.net java.lang java.io java.util java.file java.net java.lang java.io ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions What will be the result of executing the following code?public class Test{ public void divide(int a, int b){ try{ int c = a / b; }catch(Exception e){ System.out.print("Exception "); }finally{ System.out.println("Finally"); } public static void main(String args[]){ Test t = new Test(); t.divide(0,3); }} Compile with error Prints out: Exception Finally Prints out: Finally None of these Prints out: Exception Compile with error Prints out: Exception Finally Prints out: Finally None of these Prints out: Exception ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions The class at the top of exception class hierarchy is ................. Object Throwable Exception ArithmeticException Object Throwable Exception ArithmeticException ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Which exception is thrown when an array element is accessed beyond the array size? ArrayElementOutOfBounds ArrayIndexOutOfBoundsException None of these ArrayIndexOutOfBounds ArrayElementOutOfBounds ArrayIndexOutOfBoundsException None of these ArrayIndexOutOfBounds ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Exception generated in try block is caught in ........... block. catch throw throws finally catch throw throws finally ANSWER DOWNLOAD EXAMIANS APP