जॉइन Examsbook
उत्तर : 3. "Switch Statement"
निम्न में Break स्टेटमेंट किसके साथ उपयोग होता है ?
5प्र:
निम्न में Break स्टेटमेंट किसके साथ उपयोग होता है ?
- 1if Statementfalse
- 2else if Statementfalse
- 3Switch Statementtrue
- 4उपर्युक्त में से कोई नहींfalse
- उत्तर देखें
- Workspace
उत्तर : 3. "Switch Statement"
व्याख्या :
The break statement is used with loops (such as for and while loops) and switch statements in programming. In loops, it is used to exit the loop prematurely, while in a switch statement, it is used to exit the switch block after executing a specific case.