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 not true about inheritance?
Data hiding
Over riding
Doesn't help in resuability of code
Program development time is reduced.
What is the alternate name of derived class?
Super class
Sub class
Parent class
Base class
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
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
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
Which members of a class are not directly accessible?
Private
Public
Protected
Visibility mode
Function overloading and operator overloading comes under which type of polymorphism?
Compile time
Run time
Dynamic
Composition
Which among the following type of inheritance can inherit a derived class from multiple base classes?
Hierarchical
Multiple
Multilevel
Hybrid