What will happen when you attempt to compile and run the following code
public class Hope{
public static void main(String argv[]){
Hope h = new Hope();
}
protected Hope(){
for(int i =0;
i <10;
i ++){
System.out.println(i);
}
}
}
Reveal answer
Fill a bubble to check yourself