Rev 4415 | Rev 5764 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
5711 | bpr | 1 | <p> |
3697 | bpr | 2 | The $wims_name_quick_GAP exercise type requires the learner to fill in blanks (i.e. gaps) |
3 | in a piece of text. |
||
5711 | bpr | 4 | There are several different types of GAP exercises: |
5 | </p> |
||
2544 | bpr | 6 | <ul> |
2701 | bpr | 7 | <li> <tt>case</tt>: the blank has to be filled in by typing letters </li> |
8 | <li> <tt>clickfill</tt>: words to be dragged and dropped in the blank</li> |
||
9 | <li> <tt>dragfill</tt>: words to be dragged and dropped in the blank(each word can |
||
3947 | bpr | 10 | be used just once. Once used, the word disappears from the list of choices. ) |
2701 | bpr | 11 | <li> <tt>menu</tt>: drop down menu</li> |
12 | <li> <tt>mark</tt>: words to be clicked on</li> |
||
2544 | bpr | 13 | </ul> |
5711 | bpr | 14 | <p> |
15 | You can decide how many attempts the learner may make before providing him/her with |
||
2701 | bpr | 16 | the correct answers. |
5711 | bpr | 17 | </p><p> |
2701 | bpr | 18 | You can also decide to display or not the answers the learner has been unable to find |
19 | at the end of the exercise. |
||
5711 | bpr | 20 | </p><p> |
3947 | bpr | 21 | After each attempt, only the wrongly answered blanks have to be completed by the learner. |
2701 | bpr | 22 | The correct answers will not have to be entered again. |
23 | |||
4155 | bpr | 24 | You can decide to provide aids (the number of letters in the missing word(s), or some |
2701 | bpr | 25 | letters from the missing word(s), or the audio recording of the word(s) as long as it |
26 | is part of the swac audio collection or if you have previously recorded the word and |
||
4155 | bpr | 27 | saved it in your Modtool account, a personalized message or the right answer is shown briefly). |
2701 | bpr | 28 | Please enter the word you wish the learner to see when he/she uses the help function |
29 | in the prompt section. The learner will be able to see the help provided if he/she hovers |
||
30 | over this prompt with the mouse (for example: aide, help, ayuda). |
||
5711 | bpr | 31 | </p><p> |
3697 | bpr | 32 | Currently 39 blanks are allowed. |
5711 | bpr | 33 | </p><p> |
2701 | bpr | 34 | Several correct answers may be provided for one blank. |
4155 | bpr | 35 | In the <tt>menu</tt> and <tt>mark</tt> type GAP exercise, the <tt>shared list</tt> |
2701 | bpr | 36 | option allows you to suggest all the gapped out words in the text for the learner |
37 | to choose from in each blank. |
||
2544 | bpr | 38 | |
2701 | bpr | 39 | Otherwise at least two words (or group of words) have to be suggested for the learner |
40 | to choose from in each blank (check the syntax). Additional words (distractors) can |
||
41 | be provided as possible choices. |
||
5711 | bpr | 42 | </p><p> |
2701 | bpr | 43 | The list of words the learner will have to choose from can also be specified in |
44 | the variable <tt>choice</tt> in the data file (see second example here below). |
||
45 | In this case the list will appear in the drop down menu for each blank whether |
||
46 | you have activated the <tt>shared list</tt> option or not. |
||
5711 | bpr | 47 | </p> |
2575 | bpr | 48 | :format |
4067 | bpr | 49 | <pre> |
2701 | bpr | 50 | :He's not ??there,their,theirs?? today ! |
51 | :Those students over ??there,their,theirs?? are naughty so |
||
52 | ??their,there,theirs?? teacher is cross. |
||
53 | :Those books over ??there,their,theirs?? in ??their,there,theirs?? |
||
54 | bags are not??theirs,there,their?? but mine. |
||
55 | :I'm going ??there,their,theirs?? to see ??their,there,theirs?? friends. |
||
4067 | bpr | 56 | </pre> |
57 | <h3>$wims_name_Syntax</h3> |
||
3023 | bpr | 58 | Gaps are marked with ??word(s)??. The correct word(s) must be written in the first position, |
59 | wrong alternatives in the second, third and subsequent positions. |
||
60 | Here below is an example of the syntax |
||
61 | |||
4067 | bpr | 62 | <pre> |
4153 | bpr | 63 | :text ??correct word(s) for the 1st gap,1st wrong word(s) for the 1st gap, 2nd wrong word(s) for the 1st gap?? |
64 | text ??correct word(s) for the 2nd gap,1st wrong word(s) for the 2nd gap?? text |
||
65 | ??correct word(s) for the 3rd gap,1st wrong word(s) for the 3rd gap?? text |
||
66 | ??correct word(s) for the 4th gap,1st wrong word(s) for the 4th gap,2nd wrong word(s) for the 4th gap?? text |
||
4067 | bpr | 67 | </pre> |
3023 | bpr | 68 | |
4415 | bpr | 69 | <span class="wims_warning">$wims_name_remark</span>: If there are only a few words |
70 | to choose from, these can be listed in the variable called<tt>choice</tt>. |
||
71 | Distractors can be added to this list as well. The syntax will slightly change and will be |
||
4067 | bpr | 72 | <pre> |
3023 | bpr | 73 | choice= correct word(s) for the 1st gap,correct word(s) for the 2nd gap,correct word(s) for the 3rd gap,1st distractor,2nd distractor |
74 | :text ??correct word(s) for the 1st gap?? text ??correct word(s) for the 2nd gap?? text |
||
75 | ??correct word(s) for the 3rd gap?? text ??correct word(s) for the 2nd gap?? |
||
4067 | bpr | 76 | </pre> |
77 | <span class="wims_warning">$wims_name_remark</span>: In order to increase the number of sentences |
||
4155 | bpr | 78 | that appear in an exercise, certain words can be written between braces { } |
79 | i.e. {altenative1,alternative2,alternative3}. |
||
2701 | bpr | 80 | A comma must be used to separate the words in the braces. A different word (or piece of text) |
81 | will be selected randomly by the software program every |
||
82 | time the learner renews the exercise. If the text contains commas, the commas |
||
83 | must be replaced by their html code which is |
||
84 | (&#44;) |
||
4067 | bpr | 85 | <pre> |
2701 | bpr | 86 | :{I am,He is,She is,They are,Mary is} ??there?? ! |
87 | :Those {students,children,boys,girls} over ??there?? are naughty, so |
||
88 | {??their?? teacher is cross., |
||
89 | ??their?? headmaster will be angry.} |
||
90 | :Those books over ??there?? in ??their?? |
||
91 | bags are not??theirs?? but {mine,Peter's,hers,Mary's}. |
||
92 | :{I'm going,He's running,They are walking}??there?? to see ??their?? {friends,parents,brother,grandparents}. |
||
4067 | bpr | 93 | </pre> |
2575 | bpr | 94 | |
4067 | bpr | 95 | <span class="wims_warning">$wims_name_remark</span>: When there are several possible correct answers, |
3023 | bpr | 96 | they have to be separated by | . For example, |
4067 | bpr | 97 | <pre> |
3348 | bpr | 98 | :first possible correct word(s)|second possible correct word(s)|third possible correct word(s),distractor?? |
99 | :The ??organisation|organization,organize?? of this meeting is difficult. |
||
4067 | bpr | 100 | </pre> |
5711 | bpr | 101 | <p> |
2701 | bpr | 102 | If the learner provides a wrong answer, the first correct answer in the list will be suggested as the right answer. |
103 | (<tt>organisation</tt> in the example above) |
||
5711 | bpr | 104 | </p><p> |
4067 | bpr | 105 | <span class="wims_warning">$wims_name_remark</span>: Preferences for a data set. |
2575 | bpr | 106 | |
3023 | bpr | 107 | If you wish to add a different audio recording, a different title (i.e. text) or |
108 | a different introduction to each data set (i.e. exercise), the first line must have the following format |
||
5711 | bpr | 109 | </p> |
4067 | bpr | 110 | <pre> |
3023 | bpr | 111 | :audio=recording_file.mp3 image=picture_file.jpg title="your text" intro="instructions" |
4067 | bpr | 112 | </pre> |
4146 | bpr | 113 | <span class="wims_warning">$wims_name_remark</span>: Adding a personalised aid. You may want |
114 | to add one or more personalised aids for each (or certain) blank in a 'case' type gapfill exercise. If you add |
||
115 | several aids for the same blanks, one will be drawn randomly and displayed. |
||
116 | In this case the following format is required. |
||
117 | <pre>text text ??gap //help=[{personalised aid number 1}]?? |
||
118 | text text text text ??gap //help=[{personalised aid number 2}]?? text text<br> |
||
119 | for example : My ??sister //help=[{opposite of brother, a family member}] is coming to Paris tomorrow. |
||
120 | </pre> |
||
121 |