The 'extends' keyword is used. Frame the concept in practical terms so you can explain it during interview discussion.
In Java, the 'extends' keyword is used to create a subclass from a superclass, allowing the subclass to inherit fields and methods. For example, 'class Car extends Vehicle' means 'Car' inherits from 'Vehicle'.