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 |
Which is not an object oriented programming language?
What is function overloading and operator overloading?
What is virtual destructor? Why?
3 Answers Agile Software, College School Exams Tests, CSC,
1.explicit call for destructor 2.calling function inside a constructor. 3.base *b-new derived delete b; 4.delete p what it will delete. 5.size of base class and derived class int i,in base class and int j in derived. 6.int i-20 int main() { int i =5; printf("%d".::i); { int i =10; printf("%d".::i); } } 7.object slicing 8.new 9.function overloading(return type). 10.class base() { virtuval fun() { ----- } } class derivied:public base() { fun() { ----- } } int main() { derived d; } 11.how static function will call in C++? 12.default structures are in C++? 13.constructors should be in public . 14.virtuval constructor not exist. 15.multilevel inhritence. destructor order.
What does sksksk mean in text slang?
Write on signed and unsigned integers and give three (3) examples each
What is a mixin class?
What is inheritance in simple words?
What does the keyword "static" mean?
What are oops methods?
what are three tenets of object orinted Systems?Why they call like that ? Please answer me. Advance thanks.
what is code for call by value and call by reference?