answersLogoWhite

0

What is Dynamic Polymorphism?

Updated: 12/22/2022
User Avatar

Wiki User

9y ago

Best Answer

Dynamic polymorphism is a programming method that makes objects with the same name behave differently in different situations. This type of programming is used to allow Java Scripts to run while playing a game on the computer, for example.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is Dynamic Polymorphism?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is Difference between dynamic polymorphism and static polymorphism with example?

Static polymorphism is used the concept of early binding or we can say compile time binding where as dynamic polymorphism used the concept of late binding or run time binding.


What is the other name for polymorphism?

It is also called 'Dynamic binding of Function'


Is overriding a dynamic polymorphism in c plus plus or not?

In C++, overriding and function, method, or operator is a different thing than (dynamic) polymorphism, so overriding a polymorphic method is almost entirely possible.


Is late binding and dynamic binding related to polymorphism?

Late binding and dynamic binding are related to runtime polymorphism. By contrast, compile time polymorphism is known as static binding. Template functions and classes are examples of static binding because the exact type can be determined at compile time.


What do you meant by Runtime Polymorphism?

Runtime polymorphism is also called as method overriding, late binding or dynamic polymorphism. It is when a method in a subclass overrides a method in its super class with the same name and signature.


What is the different between polymorphism and dynamic binding?

In computer science, polymorphism refers to a computer language's ability to process objects according to their data type. Dynamic binding on the other hand, is a mechanism wherein the method used on an object is being looked up by name at runtime.


What is a dynamic constructor?

dynamic constructor is a way to constructing an object based on the run type of some existing object. it basically uses standard virtual functions/polymorphism


What is dynamic method dispatch in java?

dynamic method dispatch is a technique by which a call to a overridden method is solved at runtime rather than compile time..this is how java implements runtime polymorphism.


What are the various concepts of c plus plus?

1.Classes and Objects 2.Constructors and Destructors 3.Inheritance 4.Polymorphism 5.Dynamic Binding


Polymorphism in coelentrates?

polymorphism in coelentrates


Is interface in java is a kind of polymorphism?

In a sense, yes, but polymorphism usually refers to an objects ability to have different behaviors than that of it's parent class. Using an interface among multiple classes ensures that all subclasses have to implement those methods, and thus the objects could be stored in an instance of the superclass to allow for dynamic programming.


What is polymorphism and its types?

Polymorphism means multiple form of a function, variable or object. In Computer Science, polymorphism is a programming language feature that allows values of different data types to be handles using a common interface. There are three types : Ad-Hoc Polymosphism, Parametric Polymorphism, Subtype/Inclusion Polymorphism. Source: Wikipedia.