1.29.23.What will happen when you try to compile and run the following application?
public class Example { public Boolean flags[] = new Boolean[4] ; public static void main(String[] args){
Example E = new Example();
System.out.println( "Flag 1 is " +
E.flags[1] );
}
}