JAVA Exceptions Which exception is thrown when divide by zero statement executes? ArithmeticException NumberFormatException None of these NullPointerException ArithmeticException NumberFormatException None of these NullPointerException ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions What happen in case of multiple catch blocks? Either super or subclass can be caught first. The superclass exception cannot caught first. None of these The superclass exception must be caught first. Either super or subclass can be caught first. The superclass exception cannot caught first. None of these The superclass exception must be caught first. ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions In which of the following package Exception class exist? java.net java.lang java.io java.util java.file java.net java.lang java.io java.util java.file ANSWER DOWNLOAD EXAMIANS APP
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? IllegalStateException NumberFormatException ClassCastException ArrayIndexOutOfBoundsException None of these IllegalStateException NumberFormatException ClassCastException ArrayIndexOutOfBoundsException None of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Determine output of the following program code?public class Test{ public static void main(String args[]){ int i; try{ i = calculate(); System.out.println(i); }catch(Exception e){ System.out.println("Error occured"); } } static int calculate(){ return (7/2); }} 3 Compilation Error None of these 3.5 Error occured 3 Compilation Error None of these 3.5 Error occured ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions What will be the output?class MyClass{ public String test(){ try{ System.out.print("One"); return ""; } finally{ System.out.print("Two"); } }}public class Test{ public static void main(String args[]){ MyClass m = new MyClass(); m.test(); }} One None of these Compilation Error Two One Two One None of these Compilation Error Two One Two ANSWER DOWNLOAD EXAMIANS APP