Consider the following person class definitionclass person {…
Consider the following person class definitionclass person {private: int age; int getAge(); void setName(string);public: string name; person(int , string); person(string); person(); void setAge(int); string getName();}Which of the following code correctly implements the void setAge(int) method