Use the following class definition to answer the questions onthis quiz in C++
class Time { public: Time( int, int, int ); //Initializes a Time object void setHour( int ); //Set hour data member to a value between 1 and 12 void setMinute( int ); //Set minute data member to a value between 0 and 59 void setSecond( int ); //Set second data member to a value between 0 and 59
OR
OR