Advertisements
Advertisements
Question
Which conditional statement is used to transfer control from current statement to another statement?
Options
Branching
Sequencing
Looping
Interating
Advertisements
Solution
Branching
APPEARS IN
RELATED QUESTIONS
Which statement in switch case is used to exit the statement once the appropriate choice is found?
<script type=“text/javascript”>
x = 6 + “3”;
document.write(x);
</script>
what will be the output?
Write the general syntax for switch statement.
Differentiate the break and continue statement.
What is if statement and write its types.
Write the syntax for else-if 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;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?
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");
}