| 1. | Which of the following statements are correct? 1 The switch statement is a control statement that handles multiple selections and enumerations by passing control to one of the case statements within its body. 2 The goto statement passes control to the next iteration of the enclosing iteration statement in which it appears. 3 Branching is performed using jump statements which cause an immediate transfer of the program control. 4 A common use of continue is to transfer control to a specific switch-case label or the default label in a switch statement. 5 The do statement executes a statement or a block of statements enclosed in {} repeatedly until a specified expression evaluates to false. |
|||||||||
Answer: Option B Explanation: No answer description available for this question. Let us discuss.
|
