Advertisements
Advertisements
प्रश्न
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);
}
पर्याय
20
4010
420, 40
10
10
उत्तर
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
संबंधित प्रश्न
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?
Which of the following is not a branching statement?
The _______ statement is especially useful when testing all the possible results of an expression.
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.
The absence of which statement leads to fall through situation in switch case statement?
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");