►Write a class implementation for a class Student that contains
the data members:
1. Data member for the student Name.
2. Data member for the student Number (ID).
3. Data member for the student Faculty.
4. Data member for the student Gender (M or F).
5. Data member for the student Average (GPA).
►The class should have the following member functions:
1. Default constructor to initialize all data members.
2. Parameterized constructor to initialize all data members.
3. Set functions to set the student name, number, faculty and gender.
4. Get functions for all data members.
5. Function Find_Average that sets the Average data member. This function asks the student to enter how many courses he has and his marks to set the Average data member.
6. Print function that prints the student name, number, faculty and average. This function should print if the student Pass or not.
► Write main function as follows:
1. Creates object std1, this object calls default constructor.
2. Creates object std2, this object calls parameterized constructor.
3. Call set functions for std1.
4. call Find_Average function for std1 and std2.
5. Print function for std1 and std2
plz any one help me ,,,