#include #include class car { string type; bool convertible; // add one more private variable public: string getType(); /* add 3 more functions (1 to read a private variable and 2 functions to modify a private variable) */ }; // to test the car class, you'll have to create a main function to use it