answersLogoWhite

0

class hirarchy is a method of classifying the entities into subclasses

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is class in DBMS?

class in dbms is nothing but a collection of attributes.... class in java is defined as collection of objects....:D


What class begins java class hierarchy?

Class


Class hierarchy is a fundamental concept of object oriented programs explain what this term means with reference to inheritance abstraction and instantiation?

Class hierarchy is a term used in Java. It is used for identifying the inheritance hierarchy or the parent class relationships Ex: Public class B extends C { } Public class A extends B { } Here if we take the class hierarchy for class 'A' it would be A


Which category falls immediately below class in the systematic hierarchy?

Below class in the systematic hierarchy is the order category.


Why is the top level class is considered the largest class in a class hierarchy?

I wouldn't consider it any larger than other classes - it is just the top of the hierarchy.


Which class of hierarchy do humans belong to?

Biologically? Humans are in class Mammalia.


How did the Egyptian social hierarchy start?

Pharaoh higher class middle class lower class


What is hierarchy in java?

The top level class in Java is class Object. Every other class inherits from Object and therefore Object is the top most in the class hierarchy. If you extend a class from Object such as class Animal and further extend Animal with class Dog then the hierarchy is as follows: Object | Animal | Dog Code for this hierachy is as follows: class Animal { } class Dog extends Animal { } We don't need to write class Animal extends Object because every class extends from Object so it does not need to be stated.


What is the hierarchy of classification you use today?

The current hierarchy of classification is: domain, kingdom, phylum, class, order, family, genus, species.


Which highest level event class of the event delegation model?

The java.util.EventObject class is the heighest-level class in the event-delegation model class hierarchy.


What is a social class in which it is impossible to move up the social hierarchy?

Untouchable.


What is the Object class parent?

Object is the topmost class in the Java Class hierarchy. There is no Class above Object. All classes in Java are implicitly derived from Object.