Step 1: The line \( a = 5 / 0 \) is integer division by zero, which throws an ArithmeticException at runtime.
Step 2: The catch block matches ArithmeticException, so it runs and prints "Arithmetic Exception caught".
Step 3: After the try catch finishes, control moves to the next line, which prints "Code continues...".
Step 4: Both lines print, so the output is option (A) plus option (B). Answer is (D).