What will be the value of i when the loop terminates?? for ( i = 0; i < 11; i++) { System.out.println("count is : "+i); }
9
10
11
12