why function overloading is not called as pure polymorphism?
Answers were Sorted based on User's Feedback
Answer / dhananjay
becoz generally polymorphism is taken in terms of late
binding but in fn overloading it is early binding.
| Is This Answer Correct ? | 5 Yes | 0 No |
What is encapsulation?
Pls...could any one tell me that whether we can access the public data memeber of a class from another class with in the same program. Awaiting for your response Thanku
What is an example of genetic polymorphism?
How does polymorphism work?
In what situation factory design patterns,DAO design patterns,singleton design patterns should be applied.?
How to create a comment page in C #??
What is the difference between class and object?
Write a program to demonstrate the use of 'Composition' in C++
You attempt to query the data base with this command: SELECT name, salary FROM employee WHERE salary=(SELECT salary FROM employee WHERE last name='Wagner' OR dept no=233) Choose most appropriate option from the following: 1)Sub-queries are not allowed in the where clause. 2)a multiple row sub-query used with a single row comparison operator. 3)a single row query is used with a multiple row comparison operator.
What do you mean by variable?
WAP to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
I hv a same function name,arguments in both base class and dervied class, but the return type is different. Can we call this as a function overloading? Explain?