Answer Posted / rajdeep gupta
to call the overloaded function via object is known as
polymorphism.There are two types of polymorphism
1-Dynamic polymorphism
2-static polymorphism
static polymorphism(early binding)
there in only one class is sufficient to call the overloaded
function.it is predefine that which function want to be call.
that means the linking between function call and object is
resolved at compile time is known as static polymorphism.
dynamic polymorphism(late binding)
class model should be based on inheritance model.virtual
function is used for it.
that means the linking between function call and object is
resolved at run time is known as dynamic polymorphism.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is class and object with example?
What is a null tree?
Why do we use polymorphism in oops?
Can destructor be overloaded?
What are the benefits of interface?
What makes a language oop?
What is class encapsulation?
What is object in oops?
Which method cannot be overridden?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
Get me an image implementation program.
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
Which is not an object oriented programming language?
Is react oop?
Who invented oop?