Question 147 Give the output #include using namespace std; class Base { Public: int x,y; Public: Base(int i, int j) { x=i;y=j; } }; class Derived:public […]
Question 148 Which one of the following are essential features of object oriented language? Abstraction and encapsulation Strictly-typed Type-safe property coupled with sub-type rule Polymorphism in […]