Advertisements
Advertisements
प्रश्न
The absence of which statement leads to fall through situation in switch case statement?
पर्याय
Continue
Break
Return
System.exit(0)
Advertisements
उत्तर
Break
Explanation:
The break is a jump statement that terminates the switch case block. In its absence, the flow of control falls through the following cases of the matching case.
APPEARS IN
संबंधित प्रश्न
_______ statement can be used as alterative to if-else statement.
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>”);
}What are the different types of control statement used in JavaScript?
Write the general syntax for switch statement.
Write the syntax for else-if statement.
What message will be displayed, if the input for age is given as 20, for the following snippet?
Which of the following data type cannot be used with switch case construct?
Which of the following is not true with regards to a switch statement?
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");
}