Science, asked by JassChahal2591, 1 year ago

Which of the following concepts means determining at runtime what method to invoke?
a. Data hiding.
b. Dynamic typing.
c. Dynamic binding.
d. Dynamic loading.

Answers

Answered by Anonymous
6

Dynamic binding concepts means determining at runtime in C++ language .

Answered by adventureisland
1

Answer :

C. Dynamic binding concepts mean determining at runtime what method to invoke.

Explanation :

  • Dynamic binding binds the method call to the method body at runtime. Another name for this is late binding.
  • Method Overriding is a great example of dynamic binding because both the parent and child classes have the same method, and the type of the object determines which method is called.
  • Dynamic binding refers to the process of determining the type of object during runtime.
Similar questions