Advertisements
Advertisements
Question
Differentiate the break and continue statement.
Distinguish Between
Solution
- Break Statement:
- The break statement will terminate the loop early.
- The break statement is executed and the loop is terminated.
- Continue Statement:
- The continue statement will skip back to the loop condition check.
- When the continue statement is executed, the current is iteration of the enclosing loop is terminated.
shaalaa.com
Introduction of Conditional Statements in Java
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Which statement in switch case is used to exit the statement once the appropriate choice is found?
Which of the following is not a branching statement?
What will be the output for the following snippet:
For (var n=0; n<10; n++)
{
if (n==3)
{
break;
}
document write (n+”<br>”);
}
In which loop the condition is evaluated, before executing a statement?
What are the different types of control statement used in JavaScript?
What is meant by conditional statements in JavaScript?
List out the various branching statements in JavaScript?
What is if statement and write its types.
The absence of which statement leads to fall through situation in switch case statement?
Which of the following data type cannot be used with switch case construct?