Difference between function overloading and function overriding.
What is a constructor initializer list?
Explain about Searching and sorting algorithms with complexities
What is latest update of C++ ?
How to stop class inheritance in C++ with condition that object creation should be allowed
What is a virtual base class?
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-; } }
What is Coupling?
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"; }
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?
What are issues if we mix new and free in C++?
How to input string in C++
What are string library functions(syntax).