Are vectors faster than arrays?
No Answer is Posted For this Question
Be the First to Post Answer
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
When does a name clash occur in c++?
What are virtual functions and what is its use?
What are the classes in c++?
Why do we need pointers?
What is searching?
How do you remove an element from a set in c++?
What is c++ & why it is used?
Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].
Explain the volatile and mutable keywords.
Is c++ a good first language to learn?
What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same