What you mean by early binding and late binding? How it is related to dynamic binding?
The compiler performs a process called binding when an object is assigned to an object variable. The early binding (static binding) refers to compile time binding and late binding (dynamic binding) refers to runtime binding.
| Is This Answer Correct ? | 0 Yes | 0 No |
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?
How to declare a function pointer?
What is binary object model?
What are all predefined data types in c++?
How can we access protected and private members of a class?
What is the rule of three?
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
Is map sorted c++?
Does c++ have arraylist?
What is polymorphism in c++? Explain with an example?
What is a loop? What are different types of loops in c++?
Define linked lists with the help of an example.