当2个实际参数分别为4和0时,以下方法调用的执行结果为:public void divide(int a, int b) { try { int c = a / b; } catch (Exception e) { System.out.print(“Exception “); } finally { System.out.println(“Finally”); } } A.输出 Exception B.输出 Finally C.无输出 D. 输出 Exception Finally
正确答案:D