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 In which of the following package Exception class exist? java.io java.net java.util java.file java.lang java.io java.net java.util java.file java.lang ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions Which exception is thrown when divide by zero statement executes? NullPointerException ArithmeticException None of these NumberFormatException NullPointerException ArithmeticException None of these NumberFormatException 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 ? None of these true false Compilation Error None of these true false Compilation Error 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(); }} printName() Compilation succeed but no output Name-B None of these Value-A Compilation fails-Exception NullPointerException is not compatible with throws clause in printName() Compilation succeed but no output Name-B None of these Value-A Compilation fails-Exception NullPointerException is not compatible with throws clause in ANSWER DOWNLOAD EXAMIANS APP
JAVA Exceptions The class at the top of exception class hierarchy is ................. ArithmeticException Object Exception Throwable ArithmeticException Object Exception Throwable ANSWER DOWNLOAD EXAMIANS APP