What will be the output of the following program?
public class Comparison {
public static void main(String args[]) {
int i = 1;
int j = 1;
int k = 2;
try {
i++;
j--;
k--;
if ((k / j > k / i)) {
i++;
}
} catch (ArithmeticException e) {
System.out.println("arithmetic error.");
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("index out of bounds error.");
} finally {
System.out.print("final block execute.");
}
}
}