Home »
MCQs »
C++ MCQs
Which of the following statement is correct about the 'break' statement?
91. Which of the following statement is correct about the "break" statement?
- The break statement cancels the remaining iterations
- Break statement skips a particular iteration
- The break statement terminates the program
- None of the above
Answer: A) The break statement cancels the remaining iterations
Explanation:
The Break statement cancels the remaining iterations.