Advertisements
Advertisements
प्रश्न
Which statement in switch case is used to exit the statement once the appropriate choice is found?
विकल्प
Exit
Default
Case
Break
MCQ
उत्तर
Break
shaalaa.com
Introduction of Conditional Statements in Java
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Which conditional statement is used to transfer control from current statement to another statement?
_______ statement can be used as alterative to if-else statement.
In which loop the condition is evaluated, before executing a statement?
List out the various branching statements in JavaScript?
Write the general syntax for switch statement.
Differentiate the break and continue 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;
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");