//Question @Christopher Pauley

package studentClient;

/**
Question - A test question
paragraph- the question itself
correctAnswer - the correct answer to the question
studentAnswer- the student's answer to the question
*/
   abstract class Question
   {
   String paragraph;
   String correctAnswer;
   String studentAnswer;
   }

/**
GradeQuestion - A question that has been graded.
score- the score for the question
comments- the teacher's comments
*/   
   
   abstract class GradedQuestion extends Question
   {
   int score;
   String comments;
   }