Consider the code snippet below: class Question { public: virtual void display() const; virtual void display(ostream& out) const; . . . }; class ChoiceQuestion : public Question { public: void display(); . . . }; What change should be made to allow ChoiceQuestion::display() to override Question::display()?