when we extend a superclass we have a choice whether or not to overrride the methods of the superclass code example
Example: public class extends java super
public MountainBike(int startHeight,
int startCadence,
int startSpeed,
int startGear) {
super(startCadence, startSpeed, startGear);
seatHeight = startHeight;
}