Make a list using linked list approach according to thespecification given below
ID: 3613900 • Letter: M
Question
Make a list using linked list approach according to thespecification given below
1.1 A class Student that contains student name, student ID andthe marks %.
1.2 A class Studentlist that contains a number of objectsStudent.
Note: At this point of time, you do not have to store themaccording to their
position.
1.3 Implement the following functions for the Studentlistclass:
b. empty() - check whether the list is empty.
c. insert(int pos, Student &item), where pos is the positionin the list. The
position in the list starts from 0;
Note that you need to consider the special
case when pos=0 and when pos is equal to the size of yourlist.