Example #1
0
        public Quiz()
        {
            quizPaper         = new QuizPaper();
            numberOfQuestions = 1;

            r = new Random();
            questionPrototype = new List <String>();
        }
Example #2
0
 public Evaluator(QuizPaper q)
 {
     this.quiz          = q;
     numberOfQuestions  = 0;
     correctAnswers     = 0;
     attemptedQuestions = 0;
     percentageCorrect  = 0;
     quizID             = null;
     averageTime        = 0;
     userID             = null;
     evaluateQuiz();
 }