Computer Science, asked by Rathoreji10, 1 month ago

2. ……………. binding means that an object is bound to its function call at compile time. A) late B) static C) dynamic D) fixed​

Answers

Answered by ppriyat10
25

Answer:

I think your answer is Static

Answered by Tulsi4890
0

B) Static binding means that an object is bound to its function call at compile time.

  • Static or early binding is the kind of binding that can be resolved by the compiler at the time of compiling.
  • Late or Dynamic binding is the kind of binding in which the type of the object or an argument is called upon at the run-time.
  • Overriding of a function is an example of dynamic binding.
  • Final, private, and static variables use static binding.
  • Virtual methods (in JAVA) make use of dynamic binding.
Similar questions