Advertisements
Advertisements
प्रश्न
The absence of which statement leads to fall through situation in switch case statement?
विकल्प
Continue
Break
Return
System.exit(0)
उत्तर
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 statement in switch case is used to exit the statement once the appropriate choice is found?
What will be the output for the following snippet:
For (var n=0; n<10; n++)
{
if (n==3)
{
break;
}
document write (n+”<br>”);
}
The _______ statement is especially useful when testing all the possible results of an expression.
<script type=“text/javascript”>
x = 6 + “3”;
document.write(x);
</script>
what will be the output?
What is meant by conditional statements in JavaScript?
What is if statement and write its types.
What message will be displayed, if the input for age is given as 20, for the following snippet?
Rewrite the following code using the if-else statement:
int m = 400;
double cl). = (m>300) ? (m/10.0) * 2; (m/20.0) - 2;
Which of the following is not true with regards to a switch statement?