Exception Handling

© examsiri.com
Question : 22 of 24
 
Marks: +1, -0
Given:
class Emu {
  static String s = "-";
  public static void main(String[] args) {
   try {
    throw new Exception();
   } catch (Exception e) {
    try {
     try { throw new Exception();
    } catch (Exception ex) { s += "ic "; }
   throw new Exception(); }
   catch (Exception x) { s += "mc "; }
   finally { s += "mf "; }
   } finally { s += "of "; }
   System.out.println(s);
  } }

What is the result?
Go to Question: