STL (140)
OOPS (873)
C++ General (2409) Which data structure gives efficient search? A. B-tree B. binary tree C. array D. linked list
21 30814Give the output of the following program main() {char *p='a'; int *i=100/*p; } what will be the value of *i= 1
6 12111Give the output of the following program main() {int ret; ret=fork();ret=fork();ret=fork();ret=fork(); if(!ret) printf("sun"); else printf("solaris");
8 15767When a private constructer is being inherited from one class to another class and when the object is instantiated is the space reserved for this private variable in the memory??
13 22397Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator
2 9131
Write a function to find the nth item from the end of a linked list in a single pass.
How much is c++ certification?
What is the auto keyword good for in c++?
What is constructor in oop?
Why do we use class in oops?
Is it possible to pass an object of the same class in place of object reference to the copy constructor?
What is the difference between #import and #include?
Explain how an exception handler is defined and invoked in a Program.
What is an orthogonal base class in c++?
What is protected inheritance?
Do inline functions improve performance?
What are features of c++?
what is the use of void main() in C++ language?
Describe private, protected and public – the differences and give examples.
Explain differences between new() and delete()?