जॉइन Examsbook
उत्तर : 2. "nested statement"
जब एक साथ एक से अधिक if-स्टेटमेंट का उपयोग होता है, तब वह क्या कहलाता है ?
5प्र:
जब एक साथ एक से अधिक if-स्टेटमेंट का उपयोग होता है, तब वह क्या कहलाता है ?
- 1if-else statementfalse
- 2nested statementtrue
- 3more if statementsfalse
- 4उपर्युक्त में से कोई नहींfalse
- उत्तर देखें
- Workspace
उत्तर : 2. "nested statement"
व्याख्या :
Certainly! A nested if statement refers to an if statement that is placed inside another if statement or other control structures. It allows for more specific conditions and complex decision-making in a program. The inner if statement is only executed if the outer if statement's condition is true.