Advertisements
Advertisements
प्रश्न
Differentiate the break and continue statement.
उत्तर
- 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.
APPEARS IN
संबंधित प्रश्न
Which conditional statement is used to transfer control from current statement to another statement?
Which statement in switch case is used to exit the statement once the appropriate choice is found?
List out the various branching statements in JavaScript?
What is if statement and write its types.
Write the syntax for else-if statement.
Explain switch case statement with example.
The absence of which statement leads to fall through situation in switch case statement?
Give the output of the following program segment:
int n = 4279; int d;
while(n>0)
(d=n%10;
System.out.println(d);
n=n/100;
}
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");
A student executes the following program segment and gets an error. Identify the statement which has an error, correct the same to get the output as WIN.
boolean x=true;
switch(x)
{ case 1:System.out.println("WIN");break;
case 2;System.out.println("LOOSE");
}