C++ MCQ’s

C++ MCQ’s Home Page

C++ Basic 1
C++ Basic 2
C++ Basic 3
C++ Basic 4
C++ Basic 5
C++ OOPs Concepts 1
C++ OOPs Concepts 2
C++ OOPs Concepts 3
C++ OOPs Concepts 4
C++ OOPs Concepts 5

 

C++ Language MCQ’S | OOPs Concepts Set 2 5

21.
Which of the following is an exit-controlled loop?
a) for
b) while
c) do-while
d) all of the mentioned

 

22.
Which of the following is an entry-controlled loop?

a) for
b) while
c) do-while
d) both while and for

 

23.
In which part of the for loop termination condition is checked?

for(I;II;III)
{IV}

a) I
b) II
c) III
d) IV

 

24.
What is dynamic binding?

a) The process of linking the actual code with a procedural call during run-time
b) The process of linking the actual code with a procedural call during compile-time
c) The process of linking the actual code with a procedural call at any-time
d) All of the mentioned


 

25.
What is static binding?

a) The process of linking the actual code with a procedural call during run-time
b) The process of linking the actual code with a procedural call during compile-time
c) The process of linking the actual code with a procedural call at any-time
d) All of the mentioned