What is a c++ class?
No Answer is Posted For this Question
Be the First to Post Answer
What is a loop? What are different types of loops in c++?
Can you declare an array without a size in c++?
Difference between overloaded functions and overridden functions
Can a constructor throw a exception? How to handle the error when the constructor fails?
In how many ways we can initialize an int variable in C++?
Explain the auto storage classes in c++.
How to stop conversions among objects?
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.
Are php strings immutable?
Do you know what are static and dynamic type checking?
Why c++ is not a pure oop language?
What is the difference between Pointer and a Reference? When you would use them?