Advertisements
Advertisements
Question
Consider the following program segment and select the output of the same when n = 10:
switch(n)
{Case 10: System.out.println(0*2);
case 4: System.out.println(n*4); break;
default : Syslem.out.println(n);
}
Options
20
4010
420, 40
10
10
Solution
20
40
Explanation:
The value of n = 10 matches the 1st case, so n*2 = 20 is printed. Since there is no break, the control also goes to the next case and printsn*4 = 40 in a new line. Then, a break is encountered.
APPEARS IN
RELATED QUESTIONS
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>”);
}
What are the different types of control statement used in JavaScript?
List out the various branching statements in JavaScript?
Differentiate the break and continue statement.
What is if statement and write its types.
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?
Explain switch case statement with example.
Which of the following data type cannot be used with switch case construct?