How many times will the following while loop print "Hello"?
while
x = 5;while(x > 1) { print("Hello"); x = x - 1;}
1
4
6
5
This question is part of this quiz :