-
-
-
-
-
The following truth table is given. What is Y equal to??ABCY00010011010001101000101011011111
(A')(B')(AB) where ' stands for complement.
-
Explain the Inheritance Principle
Inheritance is the process by which one object acquires the properties of another object.
-
-
What do you mean by pure virtual functions?
A pure virtual member function is a member function that the base class forces derived classes to provide. Normally these member functions have no implementation. Pure virtual functions are equated to zero. class Shape { public: virtual void draw() = 0; };