try { int a = 5 / 0; } catch (ArithmeticException e) { System.out.println("Division by zero."); }
a) Division by zero.
c) Compilation error
b) Exception in thread "main" java.lang.ArithmeticException: / by zero