Question: Which function ( s ) in the following class interface should include error checking for validity / consistency ? class Student { public: Student (

Which function(s) in the following class interface should include error checking for validity/consistency?
class Student
{
public:
Student(int an_id);
int set_id(int id);
string get_id() const;
string get_name() const;
void set_name(string new_name);
private:
string name;
int id;
};
Question 7 options:
Student
get_id
get_name
All of these

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!