Interactions in the learningDomain2 can include the following parts:
- A question
- Images (optional)
- Correct and incorrect answer element tags
- Feedback for correct and incorrect answers (optional)
Notice the use of 2 as in learningDomain2, lcTrueFalse2, and so on. An earlier version of L&T used <learningDomain>. The <learningDomain2> elements are more flexible and allow block elements like <p> within question elements.
The bulk of the interaction will be the question content. Different types of questions have different elements:
- <lcTrueFalse2>: true-false question
- <lcSingleSelect2>: multiple-choice question with a single correct answer
- <lcMultipleSelect2>: multiple-choice question with more than one correct answer
- <lcMatching2>: two columns of information that students must match into related pairs
- <lcSequencing2>: a series of items that students must rearrange into the correct order
- <lcOpenQuestion2>: a question that requires a written answer (such as short answer or essay responses)
- <lcHotspot2>: an image with mapped regions on which students must click
Below is an example of a single select question.
<learningAssessment id="la_l1_t1_ingredient_quality"> <title>Ingredient quality</title> <learningAssessmentbody> <lcInteraction id="lcInteraction_sqq_xws_rcb"> <lcSingleSelect2> <lcQuestion2>Do not use grains that are contaminated with:</lcQuestion2> <lcAnswerOptionGroup2 id="lcAnswerOptionGroup2_skb_bxs_rcb"> <lcAnswerOption2> <lcAnswerContent2>Molds</lcAnswerContent2> <lcFeedback2>Not just molds, but weed seeds and dirt too.</lcFeedback2> </lcAnswerOption2> <lcAnswerOption2> <lcAnswerContent2>Weed seeds</lcAnswerContent2> <lcFeedback2>Not just weed seeds, but molds and dirt too.</lcFeedback2> </lcAnswerOption2> <lcAnswerOption2> <lcAnswerContent2>Dirt</lcAnswerContent2> <lcFeedback2>Not just dirt, but molds and weed seeds too.</lcFeedback2> </lcAnswerOption2> <lcAnswerOption2> <lcAnswerContent2>All of the above</lcAnswerContent2> <lcCorrectResponse2/> </lcAnswerOption2> </lcAnswerOptionGroup2> </lcSingleSelect2> </lcInteraction> </learningAssessmentbody> </learningAssessment>
Note: Note that with an “all of the above” type answer, use the lcSingleSelect2 interaction type, rather than lcMultipleSelect2. If you use the lcMultipleSelect2 and a student selects all correct answers (with or without the “all of the above” selection), most learning management systems (LMS) will mark this as an incorrect response.
Practice
Now you can practice creating an assessment question.