C++ Programming Quizs Question and Answers – OOPs

Q 1. Which of the following cannot be a friend?
A. Function
B. Class
C. Object
D. Operator function

Show Answer Answer:-C. Object
Explanation Objects of any class cannot be made a friend of any other or same class whereas functions, classes and operator functions can be made a friend.

Q 2. Why references are different from pointers?
A. A reference cannot be made null
B. A reference cannot be changed once initialized
C. No extra operator is needed for dereferencing of a reference
D. All of the mentioned

Show Answer Answer:-D. All of the mentioned
Explanation References cannot be made null whereas a pointer can be. References cannot be changed whereas pointers can be modified. Pointers need * operator to dereference the value present inside it whereas reference does not need an operator for dereferencing.

Q 3. Which of the following provides a programmer with the facility of using object of a class inside other classes?
A. Inheritance
B. Composition
C. Abstraction
D. Encapsulation

Show Answer Answer:-B. Composition
Explanation The concept of using objects of one class into another class is known as Composition.

Q 4. How many types of polymorphism are there in C++?
A. 1
B. 2
C. 3
D. 4

Show Answer Answer:-B. 2
Explanation There are two types of polymorphism in C++ namely run-time and compile-time polymorphisms.

Q 5. How run-time polymorphisms are implemented in C++?
A. Using Inheritance
B. Using Virtual functions
C. Using Templates
D. Using Inheritance and Virtual functions

Show Answer Answer:-D. Using Inheritance and Virtual functions
Explanation Run-time polymorphism is implemented using Inheritance and virtual in which object decides which function to call.

Q 6. How compile-time polymorphisms are implemented in C++?
A. Using Inheritance
B. Using Virtual functions
C. Using Templates
D. Using Inheritance and Virtual functions

Show Answer Answer:-C. Using Templates
Explanation Compile-time polymorphism is implemented using templates in which the types(which can be checked during compile-time) are used decides which function to be called.

Q 7. Which of the following is an abstract data type?
A. int
B. float
C. class
D. string

Show Answer Answer:-C. class
Explanation Class is used as an abstract data type as it can be used to give implementation independent view whereas no other data type can be used to provide this.

Q 8. Which concept means the addition of new components to a program as it runs?
A. Data hiding
B. Dynamic binding
C. Dynamic loading
D. Dynamic typing

Show Answer Answer:-C. Dynamic loading
Explanation Dynamic loading is the concept of adding new components to a program as it runs.

Q 9. Which of the following explains the overloading of functions?
A. Virtual polymorphism
B. Transient polymorphism
C. Ad-hoc polymorphism
D. Pseudo polymorphism

Show Answer Answer:-C. Ad-hoc polymorphism
Explanation Ad-hoc polymorphism is a type of polymorphism in which a function denotes heterogeneous implementation depending upon the types of argument.

Q 10. Which of the following approach is used by C++?
A. Top-down
B. Bottom-up
C. Left-right
D. Right-left

Show Answer Answer:-B. Bottom-up
Explanation C++ is an object-oriented language and OOL uses a bottom-up approach to solve/view a problem.

Q 11. Out of the following, which is not a member of the class?
A. Static function
B. Friend function
C. Constant function
D. Virtual function

Show Answer Answer:-B. Friend function
Explanation Friend function is not a member of the class. They are given the same access rights as the class member function have but they are not actual members of the class.

Q 12. What is the other name used for functions inside a class?
A. Member variables
B. Member functions
C. Class functions
D. Class variables

Show Answer Answer:-B. Member functions
Explanation Functions of a class are also known as member functions of a class.

Q 13. Which of the following class allows to declare only one object of it?
A. Abstract class
B. Virtual class
C. Singleton class
D. Friend class

Show Answer Answer:-C. Singleton class
Explanation Singleton class allows the programmer to declare only one object of it, If one tries to declare more than one object the program results into error.

Q 14. Which of the following is not a type of Constructor?
A. Copy constructor
B. Friend constructor
C. Default constructor
D. Parameterized constructor

Show Answer Answer:-B. Friend constructor
Explanation Friend function is not a constructor whereas others are a type of constructor used for object initialization.

Q 15. Which of the following is correct?
A. Base class pointer object cannot point to a derived class object
B. Derived class pointer object cannot point to a base class object
C. A base class cannot have pointer objects
D. A derived class cannot have pointer objects

Show Answer Answer:-C. A base class cannot have pointer objects
Explanation C++ does not allow a derived class pointer to point a base class pointer whereas Base class can point to a derived class object. Both base class and derived class can have pointer objects.

Posted

in

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

You cannot copy content of this page