Advertisements
Advertisements
प्रश्न
Which of the following is not a branching statement?
पर्याय
Loop
If-else
Switch
For
Advertisements
उत्तर
Loop
APPEARS IN
संबंधित प्रश्न
Which conditional statement is used to transfer control from current statement to another statement?
In which loop the condition is evaluated, before executing a statement?
The _______ statement is especially useful when testing all the possible results of an expression.
List out the various branching statements in JavaScript?
Write the general syntax for switch statement.
What is if statement and write its types.
Write the syntax for else-if statement.
The absence of which statement leads to fall through situation in switch case statement?
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");
}