A. Exits the loop entirely. लूप से पूरी तरह एग्जिट हो जाता है।
B. Skips the rest of the code in the current iteration and moves to the next iteration. प्रेजेंट इट्रेशन में रेस्ट कोड को स्किप्स कर देता है और नेक्स्ट इट्रेशन पर मूव हो जाता है।
C. Restarts the loop. लूप रीस्टार्ट करता है।
D. Causes an error. एरर का कारण बनता है.
Correct Answer is :
B. Skips the rest of the code in the current iteration and moves to the next iteration.