Q. What is the output of the Java code snippet below?
Code:
outer:
for(int i=1; i<=4;i++)
{
inner:
for(int j=1; j<=4;j++)
{
if(j==1)
break outer;
}
System.out.print("A");
}
β
Correct Answer: (C)
No Output