Kotlin Polymorphism

What is Polymorphism? Polymorphism is one of the Most important features of Object-Oriented Programming.  This allows to Single task or action can be performed in different ways. The word “poly”…

0 Comments

Kotlin Inheritance

Inheritance Inheritance is a fundamental object-oriented programming (OOP) concept that allows a class (subclass or derived class) to inherit all the properties and behaviors of another class (superclass or base…

Comments Off on Kotlin Inheritance