What is late binding c++?



What is late binding c++?..

Answer / Piyush Agrawal

Late binding in C++ refers to a mechanism where the function or method call is resolved (or bound) at runtime, rather than at compile time. This can be achieved using virtual functions in inheritance or by polymorphism.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Will a catch statement catch a derived exception if it is looking for the base class?

1 Answers  


What is "strstream" ?

1 Answers   Huawei,


What will happen if when say delete this ?

7 Answers  


Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?

1 Answers  


Explain virtual functions in C++.

3 Answers  


What are different types of typecasting supported by C++

1 Answers   CA,


write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.

1 Answers  


Write about the access privileges in c++ and also mention about its default access level?

1 Answers  


Is c++ platform dependent?

1 Answers  


Specify different types of decision control statements?

1 Answers  


Can comments be nested?

1 Answers  


Which function cannot be overloaded c++?

1 Answers  


Categories