Example #1
0
        public string toString()
        {
            generatedQuestions.ClearGeneratedStrings();
            // Generate Questions Types
            GenerateTrueFalseQuestions();
            if (fact.Value())
            {
                GenerateBasicQuestions();
                GenerateFillInTheBlanks();
            }
            string        result       = "";
            List <string> genQuestions = generatedQuestions.GetGeneratedStrings();

            foreach (string value in genQuestions)
            {
                result += value;
            }

            return(result.Trim());
        }