Can you please explain the difference between static and dynamic binding of functions?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the extraction operator and what does it do?

0 Answers  


Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL

0 Answers  


Implement strncpy

3 Answers  


class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4

4 Answers   Quark,


How can virtual functions in c++ be implemented?

0 Answers  






Can user-defined object be declared as static data member of another class?

0 Answers  


What is abstraction in c++?

0 Answers  


Which programming language is best to learn first?

0 Answers  


What kind of problems can be solved by a namespace?

0 Answers  


Explain the difference between 'operator new' and the 'new' operator?

1 Answers   Lucent, TCS,


Is c the same as c++?

0 Answers  


Define whitespace in C++.

0 Answers   HCL,


Categories