it is possible to inherit attributes and methods from one class to another!
#subclass (child) - the class that inherits from another class
#superclass (parent) - the class being inherited from
We use "extends" to inherit from the class :)
public class Animal { //superclass
// code not shown
}
public class Dog extends Animal{ //subclass
// code not shown
}