C-17-Q127mediumsingle_mcq
Inside the loop body, the counter variable changes:
Inside the loop body, the counter variable changes:
- aAccording to the step in
range, until the condition fails - bRandomly
- cOnly when the user presses a key
- dIt never changes
ব্যাখ্যা
The loop counter advances by the step defined in range (default 1) on each iteration and stops once the range is exhausted. Its change is deterministic, driven entirely by the range, not by user input or chance.