Advertisements
Advertisements
प्रश्न
The _______ statement is especially useful when testing all the possible results of an expression.
विकल्प
While
Do while
Switch
If
Advertisements
उत्तर
The switch statement is especially useful when testing all the possible results of an expression.
APPEARS IN
संबंधित प्रश्न
Which of the following is not a branching statement?
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?
What are the different types of control statement used in JavaScript?
Write the syntax for else-if statement.
Explain switch case statement with example.
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;
}Which of the following data type cannot be used with switch case construct?
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");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");
}