C-18-Q041mediumsingle_mcq
If the condition were changed to while (count<=5) with the same counter logic, the text ICT would be displayed:
If the condition were changed to while (count<=5) with the same counter logic, the text ICT would be displayed:
- a3 times
- b4 times
- c5 times
- d6 times
ব্যাখ্যা
With count starting at 1 and increasing by 1 each pass, the condition count<=5 is true for count = 1, 2, 3, 4, 5. The body therefore runs five times, displaying ICT five times.