(A) while loop
(B) do while loop
(C) nested loop
(D) for loop
Tag: C++ Programming
For loop contains how many expressions?
(A) 2
(B) 3
(C) 5
(D) 9
Loop which never ends is called?
(A) Infinite loop
(B) Nested loop
(C) Counter loop
(D) None of the above
One execution of the loop is known as?
(A) Repeated
(B) Test
(C) Iteration
(D) None of the above
Among following which loop is also called counter loop?
(A) for
(B) while
(C) do while
(D) All of the above
Among following which is not a loop?
(A) while
(B) while do
(C) do while
(D) for loop
In C++ how many types of loops are used?
(A) 2
(B) 3
(C) 4
(D) 5
Loop is used for?
(A) Repetition
(B) Decision
(C) Selection
(D) None of the above