English, asked by bhanuc108gmailcom, 3 months ago

37
38
public class Temp
{
public static void mythrow()
{
System.out.print("LO ");
throw new RuntimeException();
}
public static void main(String [] args)
{
try
{
System.out.print("L1 ");
mythrow();
}
catch(Exception e)
{
System.out.print("L2 ");
}
finally
{
System.out.print("L3 ");
}
System.out.println("L4 ");
}
Answel​

Answers

Answered by rautatharva
0

Answer:

I don't know how to make answer

Answered by smdheist100
0

Answer:

the answers is

L1 , L0 , L2, L3, L4

Similar questions