answersLogoWhite

0

When the crystalline structure has more than one structure, the material is called Polymorphic.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Natural Sciences

What is polymor?

The term "polymor" is commonly used as an abbreviation for "polymorphism," which is a concept in object-oriented programming where objects can be treated as instances of their parent class. Polymorphism allows for flexibility in programming by enabling objects of different classes to be used interchangeably when they share a common interface.


Which type of supporting material is a story that brings an abstract concept down to specifics?

Example


What decreases as the volume of course material increases?

The depth of understanding or retention of the material may decrease as the volume of course material increases. Students may have less time to thoroughly engage with each topic or concept, leading to a more superficial understanding overall.


What is the amount of material in a certain volume?

The volume of a solid object is the three dimensional concept of how much space it occupies, often quantified numerically.


What are 2 or more different molecular forms of the same element in the same physical state?

Two different molecular forms of the same element in the same physical state are oxygen (O₂) and ozone (O₃). Both exist as gases at room temperature but have different molecular structures and properties. O₂ is essential for respiration and combustion, while O₃ plays a crucial role in absorbing harmful ultraviolet radiation in the Earth's stratosphere. These molecular variations illustrate the concept of allotropy, where elements can exist in multiple structural forms.

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 are the basic concept of object oriented programming language?

Inheritance Encapsulation Polymorphism Abstraction


What is the classification of polymorphic?

Polymorphic can refer to different things depending on the context. In computer science, polymorphism is a programming concept that allows objects to be treated as instances of their parent class. In biology, polymorphism refers to the existence of multiple forms of a gene within a population.


What is Polymorphism and inheritance explain with example?

Polymorphism, is an object-oriented programming concept, which relates to the ability to create a variable, function or an object that has more than one form. This allows the object to invoke the correct instance of the variable, function or other object based upon the object type. The most common use of polymorphism in OOP occurs when a parent class reference is used to refer to a child class object. Here are some links to examples: C++: http://www.cplusplus.com/forum/beginner/10884/ c#: http://msdn.microsoft.com/en-us/library/ms173152.aspx Python: http://en.wikipedia.org/wiki/Polymorphism_in_object-oriented_programming Java: http://www.tutorialspoint.com/java/java_polymorphism.htm


Does java support oops concept?

Yes. Java is an Object Oriented Programming Language and it supports the OOPS concepts like Inheritance, Polymorphism etc


Which phrase express the concept of polymorphism?

As an example, given a base class Shape, polymorphism enables the programmer to define different area methods for any number of derived classes, such as Circles, Rectangles and Triangles. No matter what shape an object is, applying the area method to it will return the correct results.This may also be referred to as an "is-a" relationship.


What is polymor?

The term "polymor" is commonly used as an abbreviation for "polymorphism," which is a concept in object-oriented programming where objects can be treated as instances of their parent class. Polymorphism allows for flexibility in programming by enabling objects of different classes to be used interchangeably when they share a common interface.


What is the advantage of polymorphism in oops concepts in java?

The polymorphism concept is similar for all objected oriented languages the defination is same and function too. The polymorphism is defined below. "one name multiple form" The explaination is that the polymorphism is combination of two words "poly" means many and "morphism " means form .the function overloading could be example for it. void sum(int,int) void sum(float,float) void sum(double,int) void sum(int,float) in above example the function name is same but only signature is different. and therefore this can be easily implemented in java. posted by: Girija Shankar jaiswal contact no.+919453755840


What is the concept of sound?

sound is energy transferred by vibrations in a given material


Why is pi not edible?

Because it is a number, which is an abstract concept not a material object!


What is a polymorphs?

In computer science, polymorphism means allowing a single definition to be used with different types of data (specifically, different classes of objects). For instance, a polymorphic function definition can replace several type-specific ones, and a single polymorphic operator can act in expressions of various types. Many programming languages and paradigms implement some forms of polymorphism; for a popular example, see polymorphism in object-oriented programming. The concept of polymorphism applies to data types in addition to functions. A function that can evaluate to and be applied to values of different types is known as a polymorphic function. A data type that contains elements of different types is known as a polymorphic data type. There are two fundamentally different kinds of polymorphism, as first informally described by Christopher Strachey in 1967. If the range of actual types that can be used is finite and the combinations must be specified individually prior to use, it is called ad-hoc polymorphism. If all code is written without mention of any specific type and thus can be used transparently with any number of new types, it is called parametric polymorphism. In their formal treatment of the topic in 1985, Luca Cardelli and Peter Wegner later restricted the term parametric polymorphism to instances with type parameters, recognizing also other kinds of universal polymorphism. Programming using parametric polymorphism is called generic programming, particularly in the object-oriented community. Advocates of object-oriented programming often cite polymorphism as one of the major benefits of that paradigm over others. Advocates of functional programming reject this claim on the grounds that the notion of parametric polymorphism is so deeply ingrained in many statically typed functional programming languages that most programmers simply take it for granted. However, the rise in popularity of object-oriented programming languages did contribute greatly to awareness and use of polymorphism in the mainstream programming community.


How does polymorphism promote extensibility?

how dose polymorphism promote extebsibility C++ virtual function is a member function of a class, whose functionality can be over-ridden in its derived classes. The whole function body can be replaced with a new set of implementation in the derived class.Through this u can be able to promote extensibility in your program by using Virtual function. Very simple concept. shahzad.dar@superior.edu.pk , shahzad.dar@gmail.com Lecturer in Superior University ,Lahore