Question: How many times will the following for loop be executed? for (int count = 10; count < 21; count++) System.out.println(Java is great!!!); 10 11 12
How many times will the following for loop be executed?
for (int count = 10; count < 21; count++)
System.out.println("Java is great!!!");
| 10 | ||
| 11 | ||
| 12 | ||
| 0 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
