Difference between function overloading and function overriding.


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

Post New Answer

More C++ Interview Questions

What is a constructor initializer list?

0 Answers   Amazon,


Explain about Searching and sorting algorithms with complexities

0 Answers   Accenture,


What is latest update of C++ ?

0 Answers   Adobe,


How to stop class inheritance in C++ with condition that object creation should be allowed

0 Answers  


What is a virtual base class?

6 Answers   Fidelity, Siemens,


Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }

1 Answers  


What is Coupling?

0 Answers   Cap Gemini,


Identify the error in the following program. include<iostream> using namespace std; void main() { int num[]={1,2,3,4,5,6}; num[1]==[1]num ? cout<<"Success" : cout<<"Error"; }

1 Answers  


There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?

0 Answers   Alter,


What are issues if we mix new and free in C++?

0 Answers  


How to input string in C++

0 Answers  


What are string library functions(syntax).

0 Answers   Accenture,


Categories