✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
try {
throw new ArithmeticException ();
System.out.print ( "2");
}
catch (ArithmeticException e) {
System.out.print ( "1");
}
finally {
System.out.print ( "0");
}