Advertisements
Advertisements
प्रश्न
Which of the following data type cannot be used with switch case construct?
पर्याय
int
char
String
Double
Advertisements
उत्तर
Double
Explanation:
- The data type double is incompatible with all versions of Java.
- There's a doubt. The string data type is also not usable in Java versions prior to 7.0, but it works in switches from 7.0 and above.
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?
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.
What is meant by conditional statements in JavaScript?
Write the syntax for else-if 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");