C-18-Q039mediumsingle_mcq
Running the textbook code with count=1, while (count<=3): print('ICT'); count=count+1 prints:
Running the textbook code with count=1, while (count<=3): print('ICT'); count=count+1 prints:
- aICT once
- bICT twice
- cICT three times
- dICT four times
ব্যাখ্যা
With count starting at 1 and incrementing by 1, the body runs for count = 1, 2, and 3, then stops when count becomes 4. So print('ICT') executes exactly three times.