Exercise: Overriding Inherited Method
Use what you’ve learned so far to override a method that is inherited from a parent class.
We'll cover the following...
Problem statement
You have been provided with a Person
class with the variables name
and age
and a greet
method. The greet
method of the Person
class is simply printing Hello for now.
You have also been provided a Customer
class that inherits the name
...