Explain about Garbage Collector?
No Answer is Posted For this Question
Be the First to Post Answer
How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?
What are the basics concepts of OOPS?
Describe private, protected and public?
What is the latest c++ version?
What is buffering in c++?
Explain register storage specifier.
What are the steps in the development cycle?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
Why do C++ compilers need name mangling?
class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable
What is the full form of c++?
Is linux written in c or c++?