Advertisements
Advertisements
Question
Which of the following is not true with regards to a switch statement?
Options
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
Solution
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
RELATED QUESTIONS
Which conditional statement is used to transfer control from current statement to another statement?
_______ 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?
<script type=“text/javascript”>
x = 6 + “3”;
document.write(x);
</script>
what will be the output?
What is meant by conditional statements in JavaScript?
List out the various branching statements in JavaScript?
Write the general syntax for switch statement.
Differentiate the break and continue statement.
Write the output for the following program.
<Html>
<Head>
<Title> for statement</title>
<Head>
<Body>
<script language= "java Script" type = "text / javaScript")
var no1= prompt ("please enter table you want:", "0" );
document write ("<h2> multiplication for your need </h2>")
for (Var no2= 0; no2<=10; no2++)
{
document write (no1+ "x" + no2+ "=" + no1+no2+ "<br>);
}
</script>
</body>
</Html>
Give the output of the following program segment:
int n = 4279; int d;
while(n>0)
(d=n%10;
System.out.println(d);
n=n/100;
}