1.

What is the output of this program?
public class Result 
{
public static void main(String args[])
{
try
{
int num = 0;
int num0 = 23;
int num1 = num0 / num;
System.out.print(+num1);
}
catch(Exception e)
{
System.out.print("Interview Mania");
}
finally
{
System.out.print(" Finally executed...");
}
}
}

A. Interview Mania
B. Finally executed...
C. Interview Mania Finally executed...
D. All of above
E. None of these
Answer» D. All of above


Discussion

No Comment Found

Related MCQs