What will be the output of the following Java code?
public class Test {
public static void main(String[] args) {
try {
int a = 5 / 0;
} catch (ArithmeticException e) {
System.out.println("Arithmetic Exception caught");
}
System.out.println("Code continues...");
}
}