(A) Body
(B) Part
(C) Statement
(D) All of the above
Category: C++ Programming Mcqs
C++ Programming Mcqs for Screening tests, Interviews, Viva and Other competitive exams. C++ Programming Mcqs section will help users to prepare mcqs of C++ Programming for various exams. Aspirants of Lecturer Computer Science, SST Computer Science, Subject Specialist Computer Science, Data Entry operator, Computer Programmer, Computer Operator, Software engineer and all other Competitive Exams can prepare their C++ programming portion from here.
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