Advertisements
Advertisements
प्रश्न
Which of the following data type cannot be used with switch case construct?
पर्याय
int
char
String
Double
उत्तर
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
संबंधित प्रश्न
_______ 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?
In which loop the condition is evaluated, before executing a statement?
<script type=“text/javascript”>
x = 6 + “3”;
document.write(x);
</script>
what will be the output?
List out the various branching statements in JavaScript?
What message will be displayed, if the input for age is given as 20, for the following snippet?
Explain switch case statement with example.
The absence of which statement leads to fall through situation in switch case statement?
Which of the following is not true with regards to a switch statement?
A student executes the following program segment and gets an error. Identify the statement which has an error, correct the same to get the output as WIN.
boolean x=true;
switch(x)
{ case 1:System.out.println("WIN");break;
case 2;System.out.println("LOOSE");
}