Interface PearsonMultipleChoiceQuestionData

A multiple choice question.

interface PearsonMultipleChoiceQuestionData {
    answerOrder?: PearsonMultipleChoiceQuestionAnswerOrder;
    answers: PearsonMultipleChoiceQuestionAnswer[];
    question: string;
}

Properties

The order in which answers are presented to students.

The possible answers to this question, will have exactly one with isCorrect set.

question: string

The question that will be asked to the students.