Domanda di colloquio di UST

Define inheritance and how it is applicable in your java project?

Risposta di colloquio

Anonimo

18 dic 2025

Inheritance is like a child getting traits from a parent; in my Java project, I created a base Vehicle class with core features. Then, I made specific classes like Car and Truck that extend Vehicle to automatically get those features while adding their own unique details. This saved me from rewriting the same code for every new type of vehicle.