MCQ
How many times will Hello be printed if the loop runs FOR count = 1 TO 4 and prints Hello each time?
Explanation
The loop count runs from 1 to 4, so Hello is printed 4 times.