Advertisements
Advertisements
Question
Which of the following data type cannot be used with switch case construct?
Options
int
char
String
Double
Solution
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
RELATED QUESTIONS
_______ statement can be used as alterative to if-else 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?
List out the various branching statements in JavaScript?
Differentiate the break and continue statement.
What is if statement and write its types.
Explain switch case statement with example.
Rewrite the following code using the if-else statement:
int m = 400;
double cl). = (m>300) ? (m/10.0) * 2; (m/20.0) - 2;
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");
}