Input
Output
public class ExceptionHandling{ public static void main(String args[]){ try{ int a=1/0; } catch(ArithmeticException ae){ System.out.println(ae); } finally{ System.out.println("Always execute"); } } }