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