Q. Which of the following is used to terminate a loop prematurely in C++?
β
Correct Answer: (A)
break
Explanation: The 'break' statement is used to terminate a loop before its normal completion.