Answer Posted / kumar
during compilation of program time the binding of function
is called as early binding or static binding.during
compilation time ,the c++ compiler determines which
function is used based on the parameter passed to the
function or functions return type.the compiler then
substitutes the correct function for each invocation.
by default ,c++ follows early binding.with
early binding one can achive greater efficency.function
calls are faster in this case because all the information
necessary to call the function are hard coded.
late binding, during execution of program time the binding
of program time the binding of function is called late
binding.binary binding require some overhead but provides
increase power and flexibility.this binding is implemented
through virtual function.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
How do you convert stl to steps?
Is stl part of c++ standard?
how to making game in c++ ?
What is stl stack?
How is stl different from c++ standard library?
Describe how to safeguard a system through acquisition of an antivirus Program and systematic backup.
What is a list in c++ stl?
What are the components of stl?
What is stl in c++ with example?
What do stl stand for?
Who created stl?
Explain stl.
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
a program using one dimensional array that searches a number if it is found on the list of given input numbers given by the user and locate its exact location in the list.
What is a stl vector?