Which statement shifts the control back to the beginning of the loop?

Which statement shifts the control back to the beginning of the loop?

کون سا بیان کنٹرول کو واپس لوپ کے آغاز پر بدل دیتا ہے؟
Explanation

The continue statement skips the remaining code inside the loop for the current iteration.

It then shifts control back to the beginning of the loop for the next iteration.