Define a conversion constructor?
What are the different types of polymorphism?
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; }
Is java made in c++?
In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest.
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
Is java the same as c++?
What are Binay tress and B trees? Diff between them?
What is an undefined reference/unresolved external symbol error and how do I fix it?
What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?
What is ctime c++?
How to implement flags?
Which is not a valid keyword a) public b) protected c) guarded