JAVA Exceptions What happen in case of multiple catch blocks? None of these The superclass exception must be caught first. The superclass exception cannot caught first. Either super or subclass can be caught first. None of these The superclass exception must be caught first. The superclass exception cannot caught first. Either super or subclass can be caught first. ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions What is the output for the below code ?import java.io.FileNotFoundException;class A{ public void printName() throws FileNotFoundException{ System.out.println("Value-A"); }}class B extends A{ public void printName() throws NullPointerException{ System.out.println("Name-B"); }}public class Test{ public static void main (String[] args) throws Exception{ A a = new B(); a.printName(); }} Compilation succeed but no output None of these Compilation fails-Exception NullPointerException is not compatible with throws clause in Value-A printName() Name-B Compilation succeed but no output None of these Compilation fails-Exception NullPointerException is not compatible with throws clause in Value-A printName() Name-B ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions try{ File f = new File("a.txt");}catch(Exception e){}catch(IOException io){}Is this code create new file name a.txt ? false None of these true Compilation Error false None of these true Compilation Error ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Which of the following blocks execute compulsorily whether exception is caught or not. throws throw finally catch throws throw finally catch ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions In which of the following package Exception class exist? java.lang java.file java.util java.net java.io java.lang java.file java.util java.net java.io 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); }} None of these 3.5 Error occured Compilation Error 3 None of these 3.5 Error occured Compilation Error 3 ANSWER DOWNLOAD EXAMIANS APP