JAVA Exceptions Which exception is thrown when divide by zero statement executes? None of these NumberFormatException ArithmeticException NullPointerException None of these NumberFormatException ArithmeticException NullPointerException ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Which of the following blocks execute compulsorily whether exception is caught or not. throw finally throws catch throw finally throws catch 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 None of these Prints out: Exception Finally Prints out: Finally Prints out: Exception Compile with error None of these Prints out: Exception Finally Prints out: Finally Prints out: Exception 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. "); }} This code will not compile, because in Java there are no pointers. There is a NullPointerException. There is a NullPointerException. There is an Exception. 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 a NullPointerException. There is an Exception. There is a NullPointerException. Everything went fine. ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Which keyword is used to specify the exception thrown by method? throw catch finally throws throw catch finally throws ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Which keyword is used to explicitly throw an exception? throw catch try throwing throw catch try throwing ANSWER DOWNLOAD EXAMIANS APP