What is the output of the given program code?
public class ScopeTest
{
int z;
public static void main(String[] args)
{
String theString = "Hello World";
System.out.println(theString.charAt(11));
}
}
Reveal answer
Fill a bubble to check yourself