List out some of the OODBMS available?
Answer / subham chaudhary
GEMSTONE/OPAL of Gemstone systems.
ONTOS of Ontos.
Objectivity of Objectivity inc.
Versant of Versant object technology.
Object store of Object Design.
ARDENT of ARDENT software.
POET of POET software.
| Is This Answer Correct ? | 0 Yes | 0 No |
When do we use copy constructors?
Differentiate between realloc() and free().
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Is c# written in c++?
What is the difference between while and do while loop?
Is arr and &arr are same expression for an array?
What is else if syntax?
What is the type of this pointer in c++?
What is the difference between operator new and the new operator?
Can char be a number c++?
write a c++ program that gives output 4 3 4 2 3 4 1 2 3 4 using looping statement
Explain rethrowing exceptions with an example?