Guess the output!!!!
public class exception_handling 
{
public static void main(String args[])
{
try
{
int a;
a = 5 / 0;
System.out.print("Hii");
}
catch(ArithmeticException e)
{
System.out.print("Hello");
}
finally
{
System.out.print("java");
}
}
}


Posted on by