Difference between overloaded functions and overridden functions


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

Post New Answer

More C++ General Interview Questions

When we use Abstract Class and when we use Interface?where we will implement in real time?

0 Answers  


How we can differentiate between a pre and post increment operators during overloading?

0 Answers  


char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?

4 Answers   Thomson Reuters,


You run a shell on unix system. How would you tell which shell are you running?

0 Answers  


What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random

0 Answers  






what does the following statement mean? int (*a)[4]

0 Answers  


What do you mean by C++ access specifiers ?

1 Answers  


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

0 Answers  


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

0 Answers  


What do the header files usually contains?

0 Answers  


What is the most common mistake on c++ and oo projects?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


Categories