C-18-Q024mediumsingle_mcq
A while loop placed inside another while loop is called a:
A while loop placed inside another while loop is called a:
- aSibling while loop
- bNested while loop
- cSequential while loop
- dParallel while loop
ব্যাখ্যা
When one while loop is written inside the body of another while loop, it is called a nested while loop. The inner loop runs in full for every single iteration of the outer loop.