Q1. Describe and compare the procedure oriented programming with object oriented programming.
Q2. Write down a C++ code to explain the concept of using array of objects to make an array of ten employees (reading their whole personal data: Name, age, emp_ID, sex, address) and print the same.
Q3. Describe Multiple Inheritance, Multilevel inheritance, Hierarchical Inheritance and Hybrid Inheritance illustratively and by the help of C++ code.
Q4. Describe parameterized constructors with the help of appropriate illustrations.
Q5. Compare and contrast the given with appropriate illustrations:
a) cin and cout in C++.
b) Copy constructor and assignment operator.
Q6. Write down a C++ program to read two strings S1 and S2 and perform the task S3 = S1 + S2 and print the string S3. Let consider overloading of the ‘+’ operator by using friend functions in C++.