MCQ
Sum = 0; FOR count = 1 TO 3; Sum = Sum + count; NEXT count; PRINT Sum. What is the output?
Explanation
The loop adds 1+2+3 = 6, so Sum becomes 6.