Java - Exception Handling
What will be the output of this Java program?
public class Demo {
public static void main(String[] args) {
try {
int a = 5 / 0;
} catch (ArithmeticException e) {
System.out.print("Catch-");
} finally {
System.out.print("Finally");
}
}
}