Difference between revisions of "EDT4OL/Intermediate wiki skills/Quizzes"
(→Notes) |
(→Notes) |
||
| Line 179: | Line 179: | ||
# '''***''': Three bullets are used to provide the learner feedback for the corresponding option. Please note that: | # '''***''': Three bullets are used to provide the learner feedback for the corresponding option. Please note that: | ||
#* You must insert text in the feedback to indicate correct and incorrect answers. The software itself does not distinguish between correct and incorrect answers. | #* You must insert text in the feedback to indicate correct and incorrect answers. The software itself does not distinguish between correct and incorrect answers. | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Revision as of 02:39, 21 January 2022
Overview
This mini challenge is divided into four steps.
| Step | Activity | Purpose |
|---|---|---|
| Step 1 | Review examples of wiki-based interactive quiz questions | To experience how a user interacts with wiki-based quiz questions |
| Step 2 | Consider the advantages and limitations of wiki-based quiz questions | To inform design considerations for using wiki-based quiz items |
| Step 3 | Practice editing a cloze quiz | To copy boilerplate wiki text to get started with creating a cloze quiz |
| Step 4 | Practice editing a true-false and multiple choice quiz | To copy boilerplate wiki text to get started with creating true-false and multiple-choice items |
Step 1: Review examples of wiki-based interactive quiz questions
Familiarize yourself with the following wiki-based quiz types by answering the following questions. Please select incorrect answers as well to observe how feedback works for each quiz type. Refresh / reload your browser page to reload questions after answering.
Step 2: Consider the advantages and limitations of wiki-based quiz questions
Wiki-based interactive quiz questions are quick and easy to set up using the basic structure of a nested bullet list with an associated template for managing the layout within an iDevice. They are well suited to formative assessment applications because they provide learners with immediate feedback for correct and incorrect answers. As wiki text, it is easy to work collaboratively with fellow teachers on developing and editing questions because the wiki provides a detailed edit history, when compared to third party quiz authoring tools that don't support collaborative editing.
These wiki-based questions are not suited for summative assessment, because:
- they do not track results, and
- learners with knowledge of HTML will be able to view the page source to determine the answers before answering the question.
If you are planning to use objective items for grading purposes, it would be better, for example, to use a learning management system for administering summative assessments.
Step 3: Practice editing a cloze quiz
Review the basic wiki markup for a cloze quiz, then follow the steps to create and edit a cloze quiz.
Basic wiki markup for a simple cloze quiz
{{Quiz_Cloze
|ID01
|Cloze quiz (Edit title)
|theme=line
|Start question text here
* The opposite of up is <u>down</u>
* A triangle has <u>three</u> sides
}}
Notes
- Template name: The template name is "
{{Quiz_Cloze" . It is case sensitive and should not be changed. - ID01: The first parameter is an identification (ID) parameter. Each instance of a cloze question template on the same page must have a unique ID number, for example ID01, ID02, ID03 etc.
- Title text: The second parameter is the display title for the cloze quiz, for example you can replace the text with "Fill in the blanks" to change the title.
- Theme: Always use the theme "line" (case sensitive) for publishing to the OERu WordPress theme.
- *: Each phrase or paragraph (question) where missing words must be filled in is prefaced with a star ("*").
- Answer box: Each word that is replaced by an answer box for the learner to fill in must be contained between the markup for underline, for example:
<u>word</u>. In the published view, words contained between the underline tags will be replaced with a text box. This simple close quiz:- does not check for capitalisation when marking answers, and
- does not cater for alternate correct answers.
Create and edit a simple cloze quiz
Purpose: To use wiki markup to publish a cloze quiz with two questions.
- Draft text suitable for two cloze items highlighting the words to be filled in.
- Open your sandbox page in a new tab or window.
- Insert the following following syntax
[[/Quizzes/|Quizzes]]in edit mode onto your sandbox page. This will create a subpage for practicing wiki-based quizzess. - Copy the markup for a simple cloze quiz from Step 3 above, onto your quizzes subpage you set up on your sandbox page, and save the page.
- Practice editing a cloze quiz item by:
- Changing the ID number
- Changing the display title for your quiz
- Inserting two cloze items for users to complete
- Saving and testing your cloze quiz.
Step 4: Practice editing a true-false and multiple choice quiz
Purpose: To use wiki markup to publish a true-false and multiple choice questions.
The same wiki markup from the Quiz_Multiple_Choice template is used for both true-false and multiple choice questions.
Basic wiki markup for a true false question
{{Quiz_Multiple_Choice
|ID01
|title=True false question
|theme=line
|body=
Indicate whether the following statement is true or false:
* Statement
** True
***Correct/Incorrect. Enter feedback text here
**False
*** Correct/Incorrect. Enter feedback text here
}}
Basic wiki markup for a multiple choice question
{{Quiz_Multiple_Choice
|ID01
|title=Multiple choice question
|theme=line
|body=
Select the correct option
* Question stem goes here
** First option goes here
***Correct/Incorrect. Enter feedback text here for first option
** Second option goes here
*** Correct/Incorrect. Enter feedback text here for second option
** Third option goes here
***Correct/Incorrect. Enter feedback text here for third option
** Fourth option goes here
*** Correct/Incorrect. Enter feedback text here for fourth option
}}
Notes
- Template name: The template name is "
{{Quiz_Multiple_Choice" . It is case sensitive and should not be changed. - ID01: The first parameter is an identification (ID) parameter. Each instance of a Mulltiple Choice template on the same page must have a unique ID number, for example ID01, ID02, ID03 etc.
- Display title text: The second parameter is the display title for the cloze quiz, for example you can replace the text with "Fill in the blanks" to change the title.
- Theme: Always use the theme "line" (case sensitive) for publishing to the OERu WordPress theme.
- *: A single bullet is used for the statement or question.
- **: Two bullets are used for the options learners can select.
- ***: Three bullets are used to provide the learner feedback for the corresponding option. Please note that:
- You must insert text in the feedback to indicate correct and incorrect answers. The software itself does not distinguish between correct and incorrect answers.