Computer Science, asked by venigallaudayasricha, 3 months ago

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 ashiqmuhammed0906
0

Answer:

I can't understand the question

Similar questions