What is the purpose of repetition structure is to?
a) execute a sequence of task
b) execute a procedure
c) repeat the execution of program
d) repeat an If statement once
As a computer processes instructions, one execution of loop is known as…….
a) cycle
b) duration
c) iteration
d) test
Which loop structure always executes once?
a) do-while
b) for
c) while
d) none of these
Which loop condition comes before the body of loop?
a) while loop
b) do-while loop
c) both a & b
d) none of these
Which loop condition comes after the body of loop?
a) while loop
b) do-while loop
c) for loop
d) both b & c
Which of the following loop is called counter loop?
a) for loop
b) while loop
c) do-while loop
d) none of these