Advertisements
Advertisements
प्रश्न
List the differences between break and continue statements.
Continue statement is used only in theloop statement.
अंतर स्पष्ट करें
Advertisements
उत्तर
| S. No. | Break | Continue |
| 1. | Break statement is used to terminate a block in which it exists. | Continue statement is used to move the control to the next iteration of the loop ignoring other statements. |
| 2. | Break statement can be used in switch-case as well as in loop statements. | Continue statement is used only in the loop statement. |
shaalaa.com
Control Structure
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
संबंधित प्रश्न
How many important control structures are there in Python?
Elif can be considered to be the abbreviation of ______.
The condition in the if statement should be in the form of ______
Which is the most comfortable loop?
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 the syntax of the while loop.
Write a detailed note on if..else..elif statement with suitable example.
Write a program to display all 3 digit odd numbers.
Write a program to display a multiplication table for a given number.
