suppose we have two parent classes:
a.) sqrt -square root of a number
b.) add-add 2 numbers
a sub class which inherits both of them
how can we use super keyword to invoke methods of both classes to get the result?
My doubt is sqrt will take only one argument and add will take 2. How to handle this?