Write a program to sort the number with different sorts in
one program ??
Advantage and disadvantage of routing in telecom sector
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?
Why multiple inheritance is not allowed?
WHAT IS THE ACTUAL DEFINATION OF OBJECT AND THE CLASS IN ONE SINGLE LINE WHICH THE INTERVIEWER WANT TO LISTEN.
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
what is function over loading?
Why is object oriented programming so hard?
in the following, A D B G E C F Each of the seven digits from 0,1,2,3,4,5,6,7,8,9 is: a)Represented by a different letter in abov fig: b)Positioned in the fig abov so tht A*B*C,B*G*E,D*E*F are equal. wch does g represents? C
Conversion from a basic type to a class type may be achieved using______________
What are constructors in oop?
Why is destructor used?
which structured data type is not used in c++? 1.union 2.structure 3.string 4.boolean