User profile: vishnu123

User info
User name:vishnu123
History
Joined:
Number of posts:22
Latest posts:

Doubt On Abstraction and Encapsulation
From 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 functions
it is stated that the pure virtual function declared in the base class must be implemented in the de...

a doubt regarding late binding
class 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 compostion
when we are designing..when we have to give importance to inhertance and when to compostion..(compos...