answersLogoWhite

0

What is polymorphism?

Updated: 11/5/2021
User Avatar

EmeterioCristopher R...

Lvl 1
2y ago

Best Answer

Polymorphism is the ability of one class of object to be regarded as "a kind of" base class object. To put it in simpler terms, a circle is a kind of shape, thus the circle class derives from the shape class and therefore inherits all properties that are common to all shapes. Calling methods upon a shape that is actually a circle will call the circle's methods, polymorphically, even if we do no know in advance that the shape is really a circle. This allows us to create collections of different shapes without regard to their actual shape. Each shape "does the right thing" by overriding the virtual methods declared in the shape class.

The official definition of the word polymorphism is "the condition of occurring in several different forms."

User Avatar

Weldon Crona

Lvl 10
2y ago
This answer is:
User Avatar
More answers
User Avatar

Tara Khawaja

Lvl 5
2y ago

The condition of occurring in several different forms. For example " the complexity and polymorphism of human cognition". The occurrence of different forms among the members of a population or colony or in the life cycle of an individual organism.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

Polymorph is a thermoplastic material. It can can be heated and shaped in various ways and once it is cool, it stays as that shape until you reheat it again. Polymorph has to get to 62 degrees before you can start reshaping it. Reheating and shaping can be repeated over and over and over again! The bonds between thermoplastic molecules are very weak and are made weaker when they are reheated, which then allows you to reshape the polymorph. Polymorph is sold as bags of tiny little granules which can then be heated under a hairdryer or in water in a pan at the right temperature. It is an amazing new material that can be used to make many things!!
polymorph is the process by wich you take onr thing and turn it into another

This answer is:
User Avatar

Add your answer:

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

Polymorphism in coelentrates?

polymorphism in coelentrates


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.


What kind of drugs commonly has polymorphism?

Polymorphism is common with barbiturates, steroids, and sulphonamides.


Is polymorphism exist between prokaryotes?

Yes, polymorphism exists between the prokaryotes.


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.


How can one detect polymorphism by genetic marker?

One can detect polymorphism by genetic marker using single-nucleotide polymorphism which is able to even tell mutation of a gene.


Define compile time polymorphism with short examples?

compiler can decide which form of the object should be invoked during compile time.this type of polymorphism is know as compile time polymorphism


What is drug polymorphism?

Drug polymorphism is a customerÕs variation in response to a drug is by gender, body composition, size and age. The first polymorphism was first labelled over 40 years ago.


Is Interfaces in Java a kind of polymorphism?

No. Interfaces in Java are a construct to get polymorphism ( subtype polymorphism ) working in Java, but they are not a "kind" of polymorphism. In polymorphism happens when two objects respond to the same message ( method call ) in different way ( hence poly -> many, morphism -> way or shape : polymorphism -> many ways). In Java to be able to send the same message to two different objects you have to either inherit the same parent, or implement the same interface.


In what study would one find polymorphism?

Polymorphism is the changing of one subject to an altered state. There are actually two areas of study where polymorphism would be particularly common: chemistry and web programming.


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.


How can be different forms of polymorphism achieved?

Implicit Parametric PolymorphismSubtype PolymorphismExplicit Parametric Polymorphism