MCQs > IT & Programming > C++ > How many members does the below Freelancer class have? class Upwork { public: int freelancers; int jobs; int projects; private: double income; double costs; }; struct World { int inhabitants; double gdp; int countries; }; class Project { public: char* client; char* title; double hours; double rate; private: char* dialog; char* ip; }; class Freelancer : Upwork, World, Project { private: char* name; };

C++ MCQs

How many members does the below Freelancer class have? class Upwork { public: int freelancers; int jobs; int projects; private: double income; double costs; }; struct World { int inhabitants; double gdp; int countries; }; class Project { public: char* client; char* title; double hours; double rate; private: char* dialog; char* ip; }; class Freelancer : Upwork, World, Project { private: char* name; };

Answer

Correct Answer: 11

Explanation:

Note: This Question is unanswered, help us to find answer for this one

C++ Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

C++ Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it