public class X
{
public static void main(String[] args)
{
try
{
badMethod O; /* Line 7 */
System.out.print("A");
}
catch (Exception ex)
{
System.out.print("B");
}
finally /* Line 14 */
{
System.out.print("C");
}
System.out.print("D");
}
public static void badMethod()
{
throw new RuntimeException();
}
}
Answers
Answered by
0
Answer:
I can't understand the question
Similar questions