Which method of an Exception object prints the error message and information about which line?

Practice More Questions From: Quiz 6 : More with File I/O & Exceptions

Q:

Which of the following methods of the Scanner class is used to read integers from a file?

Q:

What will be the output of the following code? public static void main(String[] args) { try { int b = 0; int a = 2 / b; System.out.println(“A”); } catch (ArithmeticException e) { System.out.println(“B”); } finally { System.out.println(“C”); } }

Q:

What data type does the readLine() method in the BufferedReader class return?

Q:

What happens if BufferedReader’s readLine() method has nothing more to read?

Q:

You can have multiple “catch” blocks in a Java try-catch statement.

Q:

Which method of an Exception object prints the error message and information about which line?

Q:

What will happen during execution of a Java program if a negative int is used for an array index?

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments