Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What will be the output of the following Java program?
class exception_handling
{
static void throwexception() throws ArithmeticException
{
System.out.print(“0”);
throw new ArithmeticException (“Exception”);
}
public static void main(String args[])
{
try
{
throwexception();
}
catch (ArithmeticException e)
{
System.out.println(“A”);
}
}
}

What will be the output of the following Java program?
class exception_handling
{
static void throwexception() throws ArithmeticException
{
System.out.print(“0”);
throw new ArithmeticException (“Exception”);
}
public static void main(String args[])
{
try
{
throwexception();
}
catch (ArithmeticException e)
{
System.out.println(“A”);
}
}
}
a) A
b) 0
c) 0A
d) Exception

Answer: c
Explanation:
Output:
0A

Join The Discussion