in JAVA by (109 points)
What is ‘IS-A ‘ relationship in java?

‘is a’ relationship is also known as inheritance. We can implement ‘is a’ relationship or inheritance in java

using extends keyword. The advantage or inheritance or is a relationship is reusability of code instead of

duplicating the code.

Ex : Motor cycle is a vehicle

Car is a vehicle Both car and motorcycle extends vehicle.

1 Answer

0 votes
by (23.9k points)

‘is a’ relationship is also known as inheritance. We can implement ‘is a’ relationship or inheritance in java

using extends keyword. The advantage or inheritance or is a relationship is reusability of code instead of

duplicating the code.

Ex : Motor cycle is a vehicle

Car is a vehicle Both car and motorcycle extends vehicle.

Related questions

+1 vote
asked Jun 17, 2019 in JAVA by reins.robin (109 points)
...