🎴 Flashcard Mode
Perl and C++ Programming Quiz
Card1 / 10
Mastered0
Review0
QuestionClick to flip
C++ provides facility to specify that the compiler should match function calls with the correct definition at the run time. This process is called as
AnswerClick to flip back
A
Dynamic binding
💡 Explanation:
Dynamic binding allows the program to determine which function implementation to call at runtime based on the actual object type, rather than the pointer/reference type. This enables runtime polymorphism through virtual functions.