Starting Out with C++: Early Objects (9th Edition)
Starting Out with C++: Early Objects (9th Edition)
9th Edition
ISBN: 9780134400242
Author: Tony Gaddis, Judy Walters, Godfrey Muganda
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 15.3, Problem 15.1CP

Explanation of Solution

Differences between static binding and dynamic binding:

Static bindingDynamic binding

Static binding is the process of matching a function call with a function at compile time.

Dynamic binding is the process of resolving the problem at run time.
Static binding is also called as early binding.Dynamic binding is also called as late binding
In static binding, all information needed for function call is determined at compile time...

Blurred answer
Students have asked these similar questions
What is the difference between static and dynamic binding?
(Dynamic Binding vs. Static Binding) Distinguish between static binding and dynamicbinding. Explain the use of virtual functions and the vtable in dynamic binding
Explain what do you know about static and dynamic binding?

Chapter 15 Solutions

Starting Out with C++: Early Objects (9th Edition)