C-18-Q031mediumsingle_mcq
In a nested while loop, the inner loop completes:
In a nested while loop, the inner loop completes:
- aAfter the outer loop fully ends
- bBefore each next iteration of the outer loop continues
- cIn parallel with the outer loop
- dOnly when break is hit
ব্যাখ্যা
For each single iteration of the outer loop, the inner loop runs through all of its iterations completely before control returns to advance the outer loop. The inner loop therefore finishes fully before the next outer iteration continues.