STL (140)
OOPS (873)
C++ General (2409)
Explain deep copy and a shallow copy?
Show the application of a dynamic array with the help of an example.
What is the function of I/O library in C++ ?
What are the three main types of variables?
If all is successful, what should main return a) 0 b) 1 c) void
What is class and structure in c++?
Why is "using namespace std;" considered bad practice?
What are the rules for naming an identifier?
What is a modifier in c++?
List the merits and demerits of declaring a nested class in C++?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Explain what you mean by a pointer.
What are the rules about using an underscore in a c++ identifier?
Which bitwise operator is used to check whether a particular bit is on or off?
What is the difference between mutex and binary semaphore?