Question 1(a):
Write a C++ program to make Matrix class. This class must have functions to determine sum and difference of two matrices.
Question 1(b):
Write the C++ program to create class named Complex to do addition and subtraction on two complex numbers.
Question 2(a):
Write the C++ program to show exception handling. You might take dividing by zero as a case of exception.
Question 2(b):
Create Student class as the abstract class in C++. Inherit GraduateStudent and PostGraduateStudent and ResearchStudent classes from Student class. Define proper constructors, destructors and functions related to attendance and examination result. Make essential assumptions wherever needed.