198k views
3 votes
Polymorphism is made possible through ________________ a. static binding b. dynamic binding c. initialization d. messaging e. information hiding

User Tianxiang
by
3.7k points

2 Answers

5 votes

Answer: Dynamic binding.

Explanation: Dynamic binding, also known as late binding is a programming mechanism in which the method being called upon an entity or function being called with arguments is looked up when the programme is being run by a name.

Therefore, polymorphism (i.e the process of initiating entities of different forms by one interface), is incorporated by functions looked up by name when the programme is running.

User Vektor
by
3.3k points
2 votes

Answer:

b. dynamic binding

Step-by-step explanation:

Polymorphism is made possible through the use of dynamic binding. Dynamic Binding which is a computer programming mechanism or technique that focuses on waiting until run-time in order to identify an object or the function that is being called with the argument, and attempts to identify it by looking it up by name.

User Jahdere
by
2.9k points