(A) Body
(B) Part
(C) Statement
(D) All of the above
Tag: C++ Programming Language
A loop within a loop is called which loop?
(A) While loop
(B) Do while loop
(C) for loop
(D) Nested loop
In which loop semicolon is placed at the end of the condition?
(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