
whis is the Arithmetic Exception in java? or define Arithmetic Exception with exp?

Arithmetic Exception occurs, when you divide a number by zero.
Example
public class TryCatch {
public static void main(String args[]) {
int d, a;
try {
d = 0;
a = 42 / d;
System.out.println("This will not be printed" + a);
} catch (ArithmeticException e) {
System.out.println(e);
}
System.out.println("After catch statement");
}
}