Doubt On Abstraction and EncapsulationFrom my point of view Encapsulation: we Bind the data and methods to be executed on that particula...
A doubt on abstract base class and pure virtual functionsit is stated that the pure virtual function declared in the base class must be implemented in the de...
a doubt regarding late bindingclass A { public: virtual int func() { cout << "hello" } } class B:...
why pointer and new ?For Suppose: you want to create an array for n number of items.(n will be known during execution). ...
choosing between inheritance and compostionwhen we are designing..when we have to give importance to inhertance and when to compostion..(compos...