Advertisements
Advertisements
प्रश्न
Which of the following is not true with regards to a switch statement?
पर्याय
Checks for an equality between the input and the case labels
Supports floating point constants
Break is used to exit from the switch block
Case labels are unique
उत्तर
Supports floating point constants
Explanation:
- The switch statement in Java does not support floating point constants (float or double) as case labels.
- It only supports char, byte, short, int, their corresponding wrapper classes, and String and enum types.
APPEARS IN
संबंधित प्रश्न
Which conditional statement is used to transfer control from current statement to another 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>”);
}
In which loop the condition is evaluated, before executing a statement?
The _______ statement is especially useful when testing all the possible results of an expression.
Differentiate the break and continue statement.
Explain switch case statement with example.
The absence of which statement leads to fall through situation in switch case statement?
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);
}
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");