Which of the following class cannot be used to create any object, but exists only to act as a base class of other classes?
Abstract class
Virtual class
Aggregate class
Friend class
Function overloading and operator overloading comes under which type of polymorphism?
Compile time
Run time
Dynamic
Composition
Which overloading method allows the same set of operators to be used with objects of many different classes?
Function overloading
Operator overloading
Constructor overloading
Method overloading
What is hybrid inheritance?
Combination of hierarchical and multiple inheritance
Combination of hierarchical inheritance
Combination of multiple and multilevel inheritance
Combination of single and hierarchical
What is key to function overloading?
Fuction's arguments list
Function's attribute list
Function's array list
Function's linked list
Which of the following statement is correct about late binding?
Binding of function definition with function argument during run time
Binding of function call with function definition during compilation
Binding of function definition with function with function call during run time
Binding of function definition with function call during compilation
Which of the following concept have functions with same name but different signature in a single program?
Virtual function
function overriding
What is the alternate name of derived class?
Super class
Sub class
Parent class
Base class
Which members of a class are not directly accessible?
Private
Public
Protected
Visibility mode
Which among the following type of inheritance can inherit a derived class from multiple base classes?
Hierarchical
Multiple
Multilevel
Hybrid