Changes between Version 5 and Version 6 of Quizzes


Ignore:
Timestamp:
May 31, 2024, 4:29:33 AM (4 months ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Quizzes

    v5 v6  
    104104   - Click on "Preview" to see how the quiz will look to students and ensure everything works correctly.
    105105
     106=== 02 - Embed answers - Question type(Short answer questions, Numerical questions, Multi-response answers).
     107
     108
     109===== Steps for Adding Embedded Answers (Cloze) Questions in Moodle
     110
     111Embedded answers (Cloze) questions allow you to create questions that contain multiple sub-questions of various types within a single question. These sub-questions can include short answers, numerical answers, and multiple response answers. Here’s how to create a Cloze question in Moodle with examples for each type:
     112
     113===== Steps to Create an Embedded Answers (Cloze) Question:
     114
     1151. **Log in to Moodle**:
     116   - Access Moodle with your credentials.
     117
     1182. **Navigate to the Course**:
     119   - From the Moodle dashboard, navigate to "BSc - IT."
     120   - Go to "Semester 01."
     121   - Click on the "Networking" course.
     122
     1233. **Turn Editing On**:
     124   - Within the "Networking" course, look for the "Turn editing on" button. This is usually located in the top-right corner of the course page.
     125   - Click on "Turn editing on."
     126
     1274. **Add a Quiz**:
     128   - Scroll to the section where you want to add the quiz (e.g., Week 1, Topic 1).
     129   - Click on the "Add an activity or resource" link within that section.
     130   - From the pop-up window, select "Quiz" and click "Add."
     131
     1325. **Configure Quiz Settings**:
     133   - **Quiz Name**: Enter a name for the quiz (e.g., "Introduction to Networking Quiz").
     134   - **Description**: Provide a brief description or instructions for the quiz.
     135   - **Display Description on Course Page**: Check this box if you want the description to appear on the course page.
     136   - Set other configurations as required (timing, grade, etc.)
     137   - Scroll down and click "Save and display."
     138
     1396. **Add Questions to the Quiz**:
     140   - On the quiz page, click on "Edit quiz."
     141   - Click on "Add" and select "a new question."
     142
     1437. **Select Question Type**:
     144   - From the "Choose a question type to add" pop-up window, select "Embedded answers (Cloze)" and click "Add."
     145
     1468. **Configure the Question**:
     147   - **Question Name**: Enter a name for the question (e.g., "Intro to Networking Cloze Q1").
     148   - **Question Text**: Enter the question text using the appropriate Cloze syntax for the embedded answers.
     149
     150===== Example of Embedded Answers (Cloze) Question
     151
     152'' ** 1. Short Answer Question ** ''
     153```plaintext
     154Question Name: Intro to Networking Cloze Q1
     155
     156Question Text:
     157The primary purpose of a network is to {1:SHORTANSWER:=communication}. Another term for communication in networking is {1:SHORTANSWER:=data exchange}.
     158```
     159
     160''** 2. Numerical Question **''
     161```plaintext
     162Question Name: Intro to Networking Cloze Q2
     163
     164Question Text:
     165The OSI model has {1:NUMERICAL:=7} layers.
     166```
     167
     168''** 3. Multi-Response Question **''
     169```plaintext
     170Question Name: Intro to Networking Cloze Q3
     171
     172Question Text:
     173Select all the layers of the OSI model:
     174{1:MULTICHOICE:=Application Layer~%50%Network Layer~%50%Data Link Layer~Transport Layer}.
     175```
     176
     177### Detailed Cloze Syntax Explanation:
     178
     179- **Short Answer**: `{1:SHORTANSWER:=correct answer}`
     180  - `{1:SHORTANSWER:=communication}`
     181  - `{1:SHORTANSWER:=data exchange}`
     182
     183- **Numerical**: `{1:NUMERICAL:=correct answer}`
     184  - `{1:NUMERICAL:=7}`
     185
     186- **Multi-Response**: `{1:MULTICHOICE:=correct answer1~correct answer2~correct answer3~distractor}`
     187  - `~%50%` indicates that selecting this option gives partial credit if multiple correct answers are possible.
     188
     189===== Steps to Finalize the Question:
     190
     1911. **Save Question**:
     192   - Scroll down and click "Save changes" to add the question to the quiz.
     193
     1942. **Verify and Finalize the Quiz**:
     195   - Return to the quiz overview page and verify that the embedded answers question appears as expected.
     196   - Adjust the quiz layout or settings if needed.
     197   - Click on "Preview" to see how the quiz will look to students and ensure everything works correctly.
     198
     199
     200
     201