OOP Book pdf
OOP full book pdf Download
Stream Classes(Class hierarchy) • A stream is a name given to flow of data. In C++ stream is represented by an object of a particular class e.g. cin …
• An exception is an abnormal situation occurred during the program execution that lead the program into some unpredicted state. • The unusual condi…
• An important feature of C++ is templates which provide great flexibility to the language. • Templates support generic programming, allows developi…
Polymorphism • Polymorphism: one name but different forms. • Polymorphism is implemented by function over loading and operator overloading – discusse…
• Inheritance is like a child inheriting the features of its parents. • It is a technique of organizing information in a hierarchical (tree) form. •…