JAVA Exceptions try{ File f = new File("a.txt");}catch(Exception e){}catch(IOException io){}Is this code create new file name a.txt ? true Compilation Error None of these false true Compilation Error None of these false ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions What is the output of the following program code?public class Test{ public static void main(String args[]){ try{ int i; return; } catch(Exception e){ System.out.print("inCatchBlock"); } finally{ System.out.println("inFinallyBlock"); } }} inFinallyBlock inCatchBlock The program will return without printing anything inCatchBlock inFinallyBlock inFinallyBlock inCatchBlock The program will return without printing anything inCatchBlock inFinallyBlock ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Which of the following blocks execute compulsorily whether exception is caught or not. finally throws throw catch finally throws throw catch 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 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 3.5 Error occured None of these 3 Compilation Error 3.5 Error occured None of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions What happen in case of multiple catch blocks? None of these The superclass exception cannot caught first. Either super or subclass can be caught first. The superclass exception must be caught first. None of these The superclass exception cannot caught first. Either super or subclass can be caught first. The superclass exception must be caught first. ANSWER DOWNLOAD EXAMIANS APP