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 statement in switch case is used to exit the statement once the appropriate choice is found?
Which of the following is not a branching statement?
In which loop the condition is evaluated, before executing a statement?
What are the different types of control statement used in JavaScript?
List out the various branching statements in JavaScript?
Write the syntax for else-if statement.
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);
}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?
