1.

What is the output of this program?
public class Without_Catch
{
public static void main(String args[])
{
try
{
System.out.print("Interview Mania ");
}
finally
{
System.out.println("Finally executed.. ");
}
}
}

A. Interview Mania
B. Finally Executed
C. Runtime Error
D. Compilation Error
E. Interview Mania Finally executed..
Answer» F.


Discussion

No Comment Found

Related MCQs