C-18-Q099mediumsingle_mcq
Which Python program correctly displays NCTB three times using a while loop?
Which Python program correctly displays NCTB three times using a while loop?
- a
count=1thenwhile count<=3: print('NCTB'); count=count+1 - b
count=0thenwhile count==3: print('NCTB') - c
count=3thenwhile count<0: print('NCTB') - d
print('NCTB' * 0)