Question: Create a class StudentList that contains Student objects. It has the following data members: class StudentList{private: static const size_t LIST_SIZE = 150;//the maximum items in

 Create a class StudentList that contains Student objects. It has the following data members: class StudentList{private: static const size_t LIST_SIZE = 150;//the maximum

Create a class StudentList that contains Student objects. It has the following data members: class StudentList{private: static const size_t LIST_SIZE = 150;//the maximum items in the list Student 'items;//items will point to the dynamically allocated array size_t numltems;//the number of items currently in the list public://member functions to be defined by to be defined and completed by you} "you have to to use the technique of inheritance" The class should have the following member functions: - One or multiple constructors - A copy constructor - A function that prints all the students' names. - A function that checks if a student exists in a list by given either the ID or the names. - Accessing functions - A destructor Create a driver to test the class. Submit the files: slist.h, slist.cpp, slisttest.cpp

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!