Which of the following is used to repeat the execution of specific
statement?
a) decision statement
b) loop structure
c) switch
d) if…..else
One execution of a loop is known as……
a) cycle
b) duration
c) iteration
d) test
How many types of loop structures are available in C++?
a) 4
b) 3
c) 2
d) 6
Explanation: while loop, do-while loop, for loop
Which of the following loop is available in C++?
a) while
b) do…. while
c) for
d) all of these
Which of the following is simplest loop in C++?
a) do….while
b) for
c) while
d) for while
Which loop structure always execute at least once?
a) do…..while
b) for
c) while
d) counter