✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int a = 35, i = 0;
while (i <3) {
try {
System.out.print (42 / a);
}
catch (ArithmeticException e) {
System.out.print (42/2);
}
finally {
System.out.print (42/1);
}
a - = 7;
i ++;
}