A loop that is inside another loop Is called what statement
A loop that is inside another loop Is called what statement may be used to stop a loop\'s current iteration and begin the next one? How may times will \"Hellol\" be painted by the following program Which of the following is a special value that marks the end of a list of values? Something within a while loop must eventually cause the loop condition to become falls or an will result
Solution
8) d(nested loop)
9) d(continue)
10) b(0) because num>5 not satisy the while loop condition
11) d(None of above)
12) c (None of the above) because it making false \"while loop condition\" inside the while loop, so after completing that loop when check for while condition that is false then it exit.
