C-18-Q034mediumsingle_mcq
In the nested-while flowchart, Block3 runs:
In the nested-while flowchart, Block3 runs:
- aInside the inner while loop
- bAfter the outer while loop ends
- cBefore any condition is checked
- dOnly on infinite loops
ব্যাখ্যা
Block3 is positioned after the outer loop's condition fails, so it runs once the outer while loop has finished. It represents the statements executed after both loops are complete.