Inheritance in object oriented programming

respected sir,
I would like to ask that is there any limit on inheritance especially in the case of multilevel inheritance ???

No limit on inheritance.

There is no limit specified for inheritance. For all practical purposes, it is infinite. If a class is final, you cannot inherit it. You can also infinitely implement many interface classes too.