What is the difference between method overloading and method overriding in c++?


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

Post New Answer

More C++ General Interview Questions

Does c++ have foreach?

0 Answers  


Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }

2 Answers   CDAC, Wipro,


What new()is different from malloc()?

0 Answers  


Is c or c++ more useful?

0 Answers  


Write a C++ Program to Multiply two Numbers

1 Answers  






What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required

0 Answers  


What is setfill c++?

0 Answers  


Under what conditions is multiple inheritance not recommended?

1 Answers  


What is a pointer with example?

0 Answers  


What is purpose of abstract class?

0 Answers  


an integer constant must have atleast one a) character b) digit c) decimal point

0 Answers  


Which is not a valid keyword a) public b) protected c) guarded

0 Answers  


Categories