-
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.. ");
}
}
}
-
- Interview Mania
- Finally Executed
- Runtime Error
- Compilation Error
- Interview Mania Finally executed..
Correct Option: E
Interview Mania Finally executed..