Saved Bookmarks
| 1. |
State whether the following statements are True or False. In either case justify your answer. 1. Break statement is essential in switch 2. For loop is an entry controlled loop 3. Do…while loop is an entry controlled loop 4. Switch is a selection statement |
|
Answer» 1. False. It is not essential in single case statement 2. True. Because it will first check the condition. If it is true then only the body will be executed. 3. False. It is an exit controlled loop. 4. True. |
|