Question 3 2 pts (CO 5) In the following statement, class FinalExam: public GradedActivity FinalExam inherits the members from GradedActivity private O it does not inherit anything public and protected O composed Question 4 2 pts (CO 5) In a UML diagram, the + symbol indicates: O a protected member of a class O a public member of a class it is not a member of a class O a private member of a class Question 5 2 pts (CO 5) You have created the Hourly class derived from the Employee class. How would you invoke the parent class constructor as part of the constructor for the child class? Hourly() : Employee() Employee() :: Hourly() Employee(): Hourly() O Hourly () :: Employee(): Question 6 2 pts (CO 5) A subclass PreOwned has been derived from the Car class. The Car class has a parameterized constructor with model, year and price as arguments. How would you call the base class parameterized car constructor? PreOwned(string model, int year, double price, bool airc, char transmission, bool GPS): Car(model, year, price) Car() Car(PreOwned) Car(transmission) Top Show transcribed image text Question 3 2 pts (CO 5) In the following statement, class FinalExam: public GradedActivity FinalExam inherits the members from GradedActivity private O it does not inherit anything public and protected O composed
Question 4 2 pts (CO 5) In a UML diagram, the + symbol indicates: O a protected member of a class O a public member of a class it is not a member of a class O a private member of a class
Question 5 2 pts (CO 5) You have created the Hourly class derived from the Employee class. How would you invoke the parent class constructor as part of the constructor for the child class? Hourly() : Employee() Employee() :: Hourly() Employee(): Hourly() O Hourly () :: Employee():
Question 6 2 pts (CO 5) A subclass PreOwned has been derived from the Car class. The Car class has a parameterized constructor with model, year and price as arguments. How would you call the base class parameterized car constructor? PreOwned(string model, int year, double price, bool airc, char transmission, bool GPS): Car(model, year, price) Car() Car(PreOwned) Car(transmission) Top
Expert Answer
Answer to Question 3 2 pts (CO 5) In the following statement, class FinalExam: public GradedActivity FinalExam inherits the member…