C-18-Q040mediumsingle_mcq
Which line in the loop is responsible for actually showing the word ICT on screen?
Which line in the loop is responsible for actually showing the word ICT on screen?
- a
count=1 - b
while (count<=3): - c
print('ICT') - d
count=count+1
ব্যাখ্যা
The print('ICT') statement is the one that outputs the word to the screen. The other lines only set up, test, or update the counter.