Which statement terminates the execution of the loop?
a) default
b) break
c) none of these
d) loop
Which statement control shift back to the beginning of the loop?
a) default
b) break
c) continue
d) loop
Which loop is preferred when programmer known, how many time loop executes?
a) for loop
b) while loop
c) do while loop
d) nested loop
Which loop is preferred when programmer don’t know, how many time loop executes?
a) for loop
b) while loop
c) do while loop
d) nested loop
Which loop is preferred when programmer want at least once loop executes?
a) for loop
b) while loop
c) do while loop
d) nested loop
A loop within loop is called………….
a) for loop
b) while loop
c) do while loop
d) nested loop