Parent Class Method name -> calculateTax Since Child Method name -> calculateTax
class will inherit this method I still want to call parent class calculateTax method
Child ch = new Child() ch.calculatetax() -> this should call parent class method , how can this be achieved
calculateTax(), then think about removing it completely. If you use some data returned from parent, then you could use the super keyword