(A) for loop
(B) while loop
(C) do while loop
(D) nested loop
In which loop the condition comes after the body of the loop?
(A) nested loop
(B) for loop
(C) while loop
(D) do while loop
In which loop the condition comes before the body of the loop?
(A) for loop
(B) while loop
(C) do while loop
(D) nested loop
Which is the post tested loop in C++?
(A) while loop
(B) do while loop
(C) for loop
(D) Nested loop
Which is pre tested loop in C++?
(A) while loop
(B) do while loop
(C) for loop
(D) nested loop
Which loop is known as entry controlled loop?
(A) while loop
(B) do while loop
(C) for loop
(D) None of the above
In C++ which is the simplest loop?
(A) while loop
(B) do while loop
(C) nested loop
(D) for loop
For loop contains how many expressions?
(A) 2
(B) 3
(C) 5
(D) 9