CPP MCQ - 4
CPP MCQ - 4
1. Which of the following type of class allows only one object of it to be created?
A. Virtual class
B. Abstract class
C. Singleton class
D. Friend class
A. Copy constructor
B. Friend constructor
C. Default constructor
D. Parameterized constructor
A. Static function
B. Friend function
C. Const function
D. Virtual function
5. Which of the following concepts means determining at runtime what method to
invoke?
A. Data hiding
B. Dynamic Typing
C. Dynamic binding
D. Dynamic loading
6. Which of the following term is used for a function defined inside a class?
A. Member Variable
B. Member function
C. Class function
D. Classic function
A. Call by value
B. Call by reference
C. Default arguments
D. Call by pointer
A. 1
B. 5
C. 13
D. 0
A. Function
B. Class
C. Object
D. Operator function
10. Which of the following concepts of OOPS means exposing only necessary information
to client?
A. Encapsulation
B. Abstraction
C. Data hiding
D. Data binding
A. operator
B. function
C. object
D. macro
13. Which of the following concepts provides facility of using object of one class inside
another class?
A. Encapsulation
B. Abstraction
C. Composition
D. Inheritance
A. 1
B. 2
C. 3
D. 4
A. int
B. double
C. string
D. Class
16. Which of the following concepts means adding new components to a program as it
runs?
A. Data hiding
B. Dynamic typing
C. Dynamic binding
D. Dynamic loading
A. Virtual polymorphism
B. Transient polymorphism
C. Ad-hoc polymorphism
D. Pseudo polymorphism
A. Top-down
B. Bottom-up
C. Right-left
D. Left-right
D. Both A and B.
B. class data members are public by default while that of structure are private.
D. class data members are private by default while that of structure are public by default.
22. Which of the following concepts means wrapping up of data and functions together?
A. Abstraction
B. Encapsulation
C. Inheritance
D. Polymorphism
23. Which of the following concepts means waiting until runtime to determine which
function to call?
A. Data hiding
B. Dynamic casting
C. Dynamic binding
D. Dynamic loading
A. >>
B. <<
C. +
D. =
26. Which of the following is the correct class of the object cout?
A. iostream
B. istream
C. ostream
D. ifstream
27. Which of the following cannot be used with the keyword virtual?
A. class
B. member functions
C. constructor
D. destructor
D. Initialize objects
C. A syntax error.
D. A run-time error.
30. Which one of the following options is correct about the statement given below? The
compiler checks the type of reference in the object and not the type of object.
A. Inheritance
B. Polymorphism
C. Abstraction
D. Encapsulation
31. Which of the following is the correct way of declaring a function as constant?
D. Both A and B
A. Virtual function
B. Operator function
C. Const function
D. Static function
D. Both A and B.
34. Which of the following factors supports the statement that reusability is a desirable
feature of a language?
D. Both A and B.
35. Which of the following ways are legal to access a class data member using this pointer?
A. this->x
B. this.x
C. *this.x
D. *this-x
36. Which of the following is a mechanism of static polymorphism?
A. Operator overloading
B. Function overloading
C. Templates
37. Which of the following is correct about the statements given below?
A. Only I is true.
C. Only II is true.
38. What happens if the base and derived class contains definition of a function with same
prototype?
D. Base class object will call base class function and derived class object will call derived class
function.
39. Which of the following are available only in the class hierarchy chain?
D. Member functions
40. Which of the following is not a type of inheritance?
A. Multiple
B. Multilevel
C. Distributive
D. Hierarchical
A. []
B. ->
C. ?:
D. *
42. In which of the following a virtual call is resolved at the time of compilation?
D. Both A and B.
A. It speeds up execution.
D. Both A and C.
44. Which one of the following is the correct way to declare a pure virtual function?
D. void Display(void) = 0;
45. Which of the following header file includes definition of cin and cout?
A. istream.h
B. ostream.h
C. iomanip.h
D. iostream.h
A. overload
B. operator
C. friend
D. override
C. It is not allowed.
D. Both A and B.
A. Multilevel inheritance
B. Multiple inheritance
C. Hybrid inheritance
D. Hierarchical Inheritance
49. Which one of the following is correct about the statements given below?
A. Only II is correct.
C. Only I is correct.
50. Which of the following is an invalid visibility label while inheriting a class?
A. public
B. private
C. protected
D. friend
54. Which of the following access specifier is used as a default in a class definition?
A. protected
B. public
C. private
D. friend
A. A static member function can access only static data members of a class.
B. A static data member is shared among all the object of the class.
D. Both A and B.
A. Abstraction
B. Inheritance
C. Dynamic binding
D. Encapsulation
57. Which of the following statement is correct?
ANSWERS
1. C 16. D 31. C 46. B