polymorphism implementation

making a prototype polymorphic?

How to make these three methods to behave polymorphically

1
2
3
4
5
6
7
8
9
10
11
12
  void presentQuestion();

        /** Grade the question and return the points earned.
         * \return The points earned.
         */
        int  getPoints();

        /**
         * Print results of the graded question
         */
        void printGraded();
Topic archived. No new replies allowed.