Introduction (class inheritance) Flashcards

1
Q

Define Inheritance

A

Inheritance is the process by which the child class includes automatically public and protected members defined in the parent class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Define Multiple Inheritance !

A

Multiple inheritance refers to the ability of one class to inherit from more than one direct super class and it is not supported in java

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Define Single Inheritance !

A

Single Inheritance refers to the ability of a class to inherit from only one super class. This means that a child class can at most have one direct parent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Give one exception to the single inheritance rule !

A

Multiple inheritance is allowed for interfaces in java where a class can implement multiple interfaces and an interface can extend multiple interfaces

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How to prevent a class from being extended ?

A

We can prevent a class from being extended by marking it as final

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Give a characteristic of single inheritance !

A

A class can be extended any number of times in java, which means that a class can have multiple direct child classes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define Multiple levels of inheritance !

A

Multiple levels of inheritance refer to the ability of classes to form a hierarchical chain where each subclass can further extend another class, creating a chain of inheritance relationships.

When you have classes forming a hierarchy where each class extends the next in line forming a chain of inheritance, the last class in the chain inherits all the public and protected members from the first class in the chain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly