Advertisements
Advertisements
प्रश्न
Which statement is generally used as a placeholder?
विकल्प
continue
break
pass
goto
MCQ
उत्तर
pass
shaalaa.com
Control Structure
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Elif can be considered to be the abbreviation of ______.
What is the output of the following snippet?
i=1
while True:
if i%3 ==0:
break
print(i,end='')
i +=1
Which amongst this is not a jump statement?
Which punctuation should be used in the blank?
if<condition>_
statement-block 1
else:
statement-block 2
Write is the syntax of if..else statement?
Write a program to display.
A
A B
A B C
A B C D
A B C D E
List the differences between break and continue statements.
Write a detail note on for loop?
Write a detailed note on if..else..elif statement with suitable example.
Write a program to display all 3 digit odd numbers.