Advertisements
Advertisements
Question
The _______ statement is especially useful when testing all the possible results of an expression.
Options
While
Do while
Switch
If
Advertisements
Solution
The switch statement is especially useful when testing all the possible results of an expression.
APPEARS IN
RELATED QUESTIONS
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?
Write the general syntax for switch statement.
What is if statement and write its types.
The absence of which statement leads to fall through situation in switch case statement?
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 data type cannot be used with switch case construct?
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");
}