What do you mean by function overriding & function overloading in c++?


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

Post New Answer

More C++ General Interview Questions

Why is c++ not purely object oriented?

0 Answers  


How do you declare a set in c++?

0 Answers  


Is python better than c++?

0 Answers  


What does new do in c++?

0 Answers  


If there are two catch statements, one for base and one for derived, which should come first?

0 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,


What's the order in which the local objects are destructed?

0 Answers  


What is the difference between #define debug 0 and #undef debug?

0 Answers  


How the keyword struct is different from the keyword class in c++?

0 Answers  


Can you please explain the difference between overloading and overriding?

0 Answers  


Which programming language is best?

0 Answers  


Define vptr.

0 Answers  


Categories