try { <br /> int x = 0; <br /> int y = 5 / x; <br /> } catch (Exception e) { <br /> System.out.println(“Exception”); <br /> } catch (ArithmeticException ae) { <br /> System.out.println(“Arithmetic Exception”); <br /> } <br /> System.out.println(“finished”); <br /> What is the result?()  <p> try { <br /> int x = 0; <br /> int y = 5 / x; <br /> } catch (Exception e) { <br /> System.out.println(“Exception”); <br /> } catch (ArithmeticException ae) { <br /> System.out.println(“Arithmetic Exception”); <br /> } <br /> System.out.println(“finished”); <br /> What is the result?()  </p>
A、A. finished
B、B. Exception
C、C. Compilation fails.
D、D. Arithmetic Exception