Multiple choice technology programming languages

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

  1. Static binding

  2. Dynamic binding

  3. -

  4. --

Reveal answer Fill a bubble to check yourself
B Correct answer
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.