Advertisements
Advertisements
प्रश्न
Which conditional statement is used to transfer control from current statement to another statement?
विकल्प
Branching
Sequencing
Looping
Interating
Advertisements
उत्तर
Branching
APPEARS IN
संबंधित प्रश्न
_______ statement can be used as alterative to if-else statement.
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?
The _______ statement is especially useful when testing all the possible results of an expression.
<script type=“text/javascript”>
x = 6 + “3”;
document.write(x);
</script>
what will be the output?
Write the general syntax for switch statement.
The absence of which statement leads to fall through situation in switch case statement?
Which of the following is not true with regards to a switch statement?
Rewrite the following code using single if statement.
if(code=='g')
System.out.println("GREEN");
else if(code=='G')
System.out.println("GREEN");