What are the main feature of the Object-Oriented Programming. Explain with suitable practical examples.
Explain the role of constructor and destructor in Object-Oriented Programming. Discuss user defined parameterized constructor with suitable example.
Define a Shape class (with necessary constructors and member functions) in Object Oriented Programming (abstract necessary attributes and their types). (Write a complete code in C++ programming language).
Derive Triangle and Rectangle classes from Shape class adding necessary attributes.
Use these classes in a main function and display the area of triangle and rectangle.
Short Questions
Attempt any eight questions: (8 × 5=40)
Why dynamic object is needed? Explain with suitable example.
What is function overloading? Explain with suitable example.
Write a C++ program containing a possible exception. Use a try block to throw it and a catch block to handle it properly.
Differentiate between base class and derived class with suitable examples.
Differntiate between private, public and protected variable with suitable example.
Differentiate container class from inheritance. Explain with suitable example.
Explain the role of polymorphism in Object Oriented Programming.
Explain about “this” pointer with suitable example.
Write a program to find the square root of given integer using inline function.