The continue statement Continue स्टेटमेंट Select one: O A. RESUMES THE PROGRAM IF IT IS HANGED प्रोग्राम को फिर से शुरू कर देता है यदि यह हैंग हो गया है O B. RESUMES THE PROGRAM IF BREAK WAS APPLIED प्रोग्राम को फिर से शुरू कर देता है अगर BREAK लागू किया गया था OC. SKIPS THE REST OF THE LOOP IN CURRENT ITERATION वर्तमान पुनरावृत्तियों(आइटेरेशन) में लूप के बचे हुए भाग को छोड़ देता है OD. ALL
Answers
Answer:
D
Explanation:
Answer:
The continue statement transfers programme control to the end of the body of the loop.
Explanation:
Option d. All of the above is correct.
The following is a list of some common terms used in the industry. The continue statement transfers programme control to the end of the body of the loop. A statement that continues takes the format: 1 continue ; Only within the body of an iterative statement, such as do, for, or while, can a continue statement be used.
If you need to exit a for or while loop and move on to the following block of code, use the break statement. If you want to move on to the next iteration of a for or while loop without finishing the current one, you can use the continue statement.
To learn more about continue statement, visit:
https://brainly.in/question/16088071
https://brainly.in/question/24345011
#SPJ3