Question:Which keyword is used to exit a loop prematurely in C#?
A exit B stop C break D continue
+ AnswerC
+ ExplanationThe break statement is used to terminate the loop immediately.
+ Report