🎴 Flashcard Mode
OOP Principles
Card1 / 14
Mastered0
Review0
QuestionClick to flip
Polymorphism in C++ is a
AnswerClick to flip back
A
a way in which entity behaves in several forms
💡 Explanation:
Polymorphism means 'many forms'. In OOP, it allows objects of different classes to be treated as objects of a common superclass, with each class implementing the same method differently. This is achieved through virtual functions, function overloading, and operator overloading in C++.