Computer Science, asked by shanjaykrishnaan34, 5 hours ago

The ----- class represent the most general description of a set of traits. ​

Answers

Answered by мααɴѕí
2

Answer:

In essence, the base class represent the most general description of a set of traits. The derived class inherits those general traits and adds properties that are specific to that class. class derived-class-name : access base-class-name{ // ... You can reuse the members of your parent class.

Similar questions