What is the output of the given program code?
public class ScopeTest
{
public static void main (String [] args)
{
String[] table = {aa, bb, cc};
int ii =0;
do while (ii < table.length);
System.out.println(ii++);
while (ii < table.length);
}
}
Reveal answer
Fill a bubble to check yourself