package grade;

import questions.*;

/**
 * The QuestionResult object is derived from Section 2.6, Test Grading, and can
 * be seen in Figure 2.6.3 as a tuple consisting of a question and the average
 * score corresponding to it.
 */
public abstract class QuestionResult {
  /**
   * The question data field contains the question from a test.
   */
  Question question;
  /**
   * The score data field contains the average score corresponding to that
   * question on a test. 
   */
  double score;

}