MCQ
How many times does the loop for (let i = 0; i < 5; i++) run?
Unit-3 Programming Fundamentals
A 4
B 5
C 6
Explanation

The loop runs for i = 0, 1, 2, 3, 4, so its body executes 5 times.