What is c++ programming language?
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.
Which bitwise operator is used to check whether a particular bit is on or off?
What is while loops?
Difference between Abstraction and encapsulation in C++?
what is data abstraction in C++?
What are advantages of using friend classes?
What is the difference between "calloc" and "malloc"?
What do you mean by static variables?
Explain the difference between overloading and overriding?
Is there a c++ certification?
Define private, protected and public access control.
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()