C-18-Q042mediumsingle_mcq
If the counter increment count=count+1 is removed from the while loop, the code will:
If the counter increment count=count+1 is removed from the while loop, the code will:
- aRun exactly once
- bPrint
ICTinfinitely - cPrint
ICTzero times - dRaise an indentation error at runtime
ব্যাখ্যা
Without count=count+1, the counter stays fixed at its starting value, so the condition never becomes false. The loop keeps printing ICT endlessly in an infinite loop.