package questions;

/**
 * An abstract represenation of a set of
 * answers to a question
 */
public abstract class Answer
{
   /**
    * Returns the correct response to the
    * answer
    * @return the correct response
    *
    * pre:
       // Each Answer only has one correct response
    */
   public abstract Response getCorrectResponse();
   public abstract int length();
}