try{
File f = new File("a.txt");
}catch(Exception e){
}catch(IOException io){
}
Is this code create new file name a.txt ?
try{
File f = new File("a.txt");
}catch(Exception e){
}catch(IOException io){
}
A. true
B. false
C. Compilation Error
D. None of these
Answer: Option C
Solution (By Examveda Team)
IOException is unreachable to compiler because all exception is going to catch by Exception block.
Join The Discussion