(Solved):
3.2.1 Draw a UML class box that matches the following code. Use \( + \) for private and \( - \) fo ...
3.2.1 Draw a UML class box that matches the following code. Use \( + \) for private and \( - \) for private and \# for protected. ( 2 points) class Musicallnstrument \{ private: int secretSerialNumber; protected: double price; int age; string maker; public: Musicallnstrument(double startPrice, int startAge, string startMaker); double getPrice(); int getAge(); string getMaker(); int getSecret(); void setPrice(double); \}