Home »
MCQs »
C# MCQs
Which C# keyword is used to coming out from the loop?
50. Which C# keyword is used to coming out from the loop?
- break
- continue
- Both A and B
- None of the above
Answer: A) break
Explanation:
The C# break keyword breaks the execution of the loop and sends the program’s control to the next statement written after the loop.