Inheritance

  1. Create an Animal class with attributes of age and weight and behaviors of running and eating.
  2. Create a Felidae class which inherits the Animal class. It will have an additional behavior of meowing.
  3. Create a Tiger class which inherits the Felidae class.
  4. Create a tiger instance and produce the meowing sound.