C-17-Q093mediumsingle_mcq
After the loop in Practical Problem #10 finishes, the printed output contains the word ICT exactly:
After the loop in Practical Problem #10 finishes, the printed output contains the word ICT exactly:
- a4 times
- b5 times
- c6 times
- d1 time
ব্যাখ্যা
The loop runs over range(1, 6), which gives five values, so the body executes five times. Hence "ICT" appears exactly 5 times in the output.