Function overloading and operator overloading comes under which type of polymorphism?
Compile time
Run time
Dynamic
Composition
Which of the following statement is not true about inheritance?
Data hiding
Over riding
Doesn't help in resuability of code
Program development time is reduced.
Why overloaded function are required?
Because they have the same return type
Because they have same number of parameters
They perform the same basic function
for consisitency in program
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
Which among the following type of inheritance can inherit a derived class from multiple base classes?
Hierarchical
Multiple
Multilevel
Hybrid
Which of the following concept have functions with same name but different signature in a single program?
Operator overloading
Function overloading
Virtual function
function overriding
What is key to function overloading?
Fuction's arguments list
Function's attribute list
Function's array list
Function's linked list
What is the alternate name of derived class?
Super class
Sub class
Parent class
Base class
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
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