public class Test{
public static void main(String args[]){
try{
int a = Integer.parseInt("four");
}
}
}
Which exception could be handled by the catch block for above?
public class Test{
public static void main(String args[]){
try{
int a = Integer.parseInt("four");
}
}
}A. IllegalStateException
B. NumberFormatException
C. ClassCastException
D. ArrayIndexOutOfBoundsException
E. None of these
Answer: Option B
Join The Discussion
Comments (1)
A. An error that occurs during runtime
B. An error that occurs during compilation
C. A warning issued by the compiler
D. A type of loop
What is the purpose of the "try" block in exception handling?
A. It catches exceptions and handles them
B. It specifies the exception type
C. It contains the code that might throw an exception
D. It specifies the exception message
In Java, can a method declare multiple exceptions using the "throws" keyword?
A. Only if the method is marked as "static"
B. Yes, a method can declare multiple exceptions separated by commas
C. Only if the exceptions are marked as "final"
D. Only if the method is marked as "final"

but we are using try without catch... so it should throw compilation exception that (try without catch)