package questions;

/**
 * An abstract represenation of an answer
 * for a coding question
 */
public abstract class CodeAnswer extends Answer
{
   private Response answer;
   
   /**
    * Returns the correct response to the
    * coding question
    * @return the correct response
    * pre:
       // Each Answer only has one correct response
    */
   public abstract Response getCorrectResponse();
}