How many times will the following loop execute?
int i = 1; while (i <= 5) { System.out.println("Hello"); }
5 times
6 times
Infinite times
Compilation Error
This question is part of this quiz :