Advertisements
Advertisements
Question
What is the output of the following snippet?
T=1
while T:
print(True)
break
Options
False
True
0
1
MCQ
Advertisements
Solution
True
shaalaa.com
Control Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Elif can be considered to be the abbreviation of ______.
Which is the most comfortable loop?
Which amongst this is not a jump statement?
Write a note on the break statement.
Write is the syntax of if..else statement?
Define control structure.
Write a program to display.
A
A B
A B C
A B C D
A B C D E
Using if..else..Elif statement writes a suitable program to display the largest of 3 numbers.
List the differences between break and continue statements.
Write a detailed note on if..else..elif statement with suitable example.
