Join Examsbook
Answer : 4. "उपर्युक्त में से कोई नहीं"
do-while एवं while condition में क्या अंतर है?
5Q:
do-while एवं while condition में क्या अंतर है?
- 1Do-while में condition के बाद सेमीकोलन का उपयोग होता है।false
- 2While में सेमीकोलन का उपयोग नहीं होताfalse
- 3While में condition के बाद स्टेटमेंट होता हैfalse
- 4उपर्युक्त में से कोई नहींtrue
- Show AnswerHide Answer
- Workspace
Answer : 4. "उपर्युक्त में से कोई नहीं"
Explanation :
The key difference lies in when the loop condition is checked. In the while loop, the condition is checked before the first iteration, potentially resulting in zero iterations. In the do-while loop, the condition is checked after the first iteration, ensuring that the loop body is executed at least once.