Question: 3. (20 points) Consider the following code snippets (student class definition). class student private: int id; double cgpa; public: student(); student(int id); student(int id, double


3. (20 points) Consider the following code snippets (student class definition). class student private: int id; double cgpa; public: student(); student(int id); student(int id, double cgpa); setValue(int id); setValue(double cgpa); setValue(int id, double cgpa); }; a) (10 points) Based on the above student class definition, describe the function overloading and constructor overloading. b) (10 points) Assume that all the constructors and function for student class has implemented correctly. Based on that, write down the main function and please create /instantiate two object of student class. Also, write down codes/statements to call constructors and functions
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
