From: rkingdon Handling of Re-takes When students are allowed to re-take the lesson, this option allows the
+ teacher to show the grade for the lesson in, for example, the Grades page,
+ as either the mean, this is average, of the grades over the first
+ and subsequent tries or as the grade from the students' best tries. This option can be changed at any time. Importing new questions This function allows you to import questions from
+ external text files, uploaded through a form.
+
+ A number of file formats are supported:
+
+ GIFT format GIFT is the most comprehensive import format available for importing
+ Moodle quiz questions from a text file. It was designed to be an easy
+ method for teachers writing questions as a text file. It supports Multiple-Choice,
+ True-False, Short Answer, Matching and Numerical questions, as well as insertion
+ of a _____ for the "missing word" format. Various question-types can be
+ mixed in a single text file, and the format also supports line comments, question names,
+ feedback and percentage-weight grades. Below are some examples: More info about the "GIFT" format Aiken format The Aiken format is a very simple way of creating multiple choice questions using a very clear human-readable format. Here is an example of the format: More info about the "Aiken" format Missing Word This format only supports multiple choice questions.
+Each answer is separated with a tilde (~), and the correct answer is
+prefixed with an equals sign (=). Here is an example:
+
+ AON This is the same as Missing Word Format, except that after importing
+ the questions all Short-Answer questions are converted four at a time
+ into Matching Questions. Additionally, the answers of multiple-choice questions are randomly
+ shuffled during the import.
+ It's named after an organisation that sponsored the development of many
+ quiz features Blackboard This module can import questions saved in Blackboard's export
+format. It relies on XML functions being compiled into your PHP. Course Test Manager This module can import questions saved in a Course Test Manager test bank.
+It relies on different ways of accessing the test bank, which is in a Microsoft Access
+database, depending on whether Moodle is running on a Windows or Linux web server. On Windows it lets you upload the access database just like any other data import file. On Linux, you must set up a windows machine on the same network with the Course Test
+Manager database and a piece of software called the ODBC Socket Server, which uses XML
+to transfer data to moodle on the Linux server. Please read the full help file below before
+using this import class. Custom If you have your own format that you need to import, you can
+ implement it yourself by editing mod/quiz/format/custom.php
+
+ The amount of new code needed is quite small - just enough
+ to parse a single question from given text.
+
+ More formats are yet to come, including WebCT, IMS QTI and whatever else
+ Moodle users can contribute! The Maximum Number of Answers in a Lesson This value determines the maximum number of answers the teacher can use.
- The default value is 4. If the lesson uses only TRUE or FALSE
+ The default value is 4. If the lesson uses only, say, TRUE or FALSE
questions throughout then it is sensible to set this value to 2. It is safe to change this value in a lesson with existing content. This parameter also sets the maximum number of Branches that can be used in
+ a Branch Table. It is safe to change the value of this parameter in a lesson with existing
+ content. In fact if you want to add a question with many choices or a long
+ Branch table changing this parameter will be necessary. After the (unusual)
+ question or BranchTable has been added this parameter can be reduced to a
+ more "standard" value. The Minimum Number of Questions in a Lesson When a lesson contains one or more Branch Tables the teacher should
+ normally set this parameter. Its value sets a lower limit on the number of
+ quesions seen when a grade is calculated. It does not force students
+ to answer that many questions in the lesson For example, setting this parameter to, say, 20, will ensure that grades are
+ given as though the students have seen at least this number of
+ questions. Take the case of a student who only looks at a single branch in
+ a lesson with, say, 5 pages and answers all the associated questions
+ correctly. They then choose to end the lesson (assuming there is that option
+ in the "top level"Branch Table, a reasonable enough assumption).
+ If this parameter were left unset their grade would be 5 out of 5, that is
+ 100%. However, with it set to 20 their grade would be reduced to 5 out of
+ 20, that is 25%. In the case of another student who goes through all the
+ branches and sees, say, 25 pages and answers all but two of the questions
+ correctly, then their grade would be 23 out of 25, that is 92%. If this parameter is used, then the opening page of the lesson should say
+ something like:
+
+
+
+Who's buried in Grant's tomb?{~Grant ~Jefferson =no one}
+
+Grant is {~buried =entombed ~living} in Grant's tomb.
+
+Grant is buried in Grant's tomb.{FALSE}
+
+Who's buried in Grant's tomb?{=no one =nobody}
+
+When was Ulysses S. Grant born?{#1822}
+
+
+
+
+What is the purpose of first aid?
+A. To save life, prevent further injury, preserve good health
+B. To provide medical treatment to any injured or wounded person
+C. To prevent further injury
+D. To aid victims who may be seeking help
+ANSWER: A
+
+
+
+
+
+
+As soon as we begin to explore our body parts as infants
+we become students of {=anatomy and physiology ~reflexology
+~science ~experiment}, and in a sense we remain students for life.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+In this lesson you are expected to attempt at least n questions.
+ You can attempt more if you wish. However, if you attempt less than n
+ questions your grade will be calculated as though you attempted n.
Where obviously "n" is replaced by the actual value this parameter + has been given.
+ +When this parameter is set students are told how many questions they + have attempted and how many they are expected to attempt. diff --git a/lang/en/help/lesson/nextpageaction.html b/lang/en/help/lesson/nextpageaction.html index 366048f528..74b1357ad7 100644 --- a/lang/en/help/lesson/nextpageaction.html +++ b/lang/en/help/lesson/nextpageaction.html @@ -5,7 +5,7 @@ the lesson in a logical way, beginning at the start and ending at the end.
However, the lesson module can also be used as a type of Flash Card assignment. - The student is show some information (optional) and a question in basically a random + The student is shown some information (optional) and a question in basically a random order. There is no set beginning and no set end. Just a set of Cards shown one after another in no particular order.
diff --git a/lang/en/help/lesson/overview.html b/lang/en/help/lesson/overview.html index 0083ff2e81..9c0acedec6 100644 --- a/lang/en/help/lesson/overview.html +++ b/lang/en/help/lesson/overview.html @@ -1,8 +1,10 @@Overview
When the students are allowed to re-take the lesson, the grades shown - in the Grades page are the grades from their best attempts of the lesson. - However, the Question Analysis always uses the answers from the - first attempts of the lesson, subsequent attempts are ignored.
+ in the Grades page are either their average grade over the re-takes + or their best grade for the lesson. The next parameter determines + which of these two grading alternatives is used. + +Note that the Question Analysis always uses the answers from the + first tries of the lesson, subsequent re-takes by students are ignored.
-By default this option is Yes, meaning that students are allowed to re-take - the lesson. It is expected that only in exceptional circumstances will this - option be set to No. +
By default this option is Yes, meaning that students are allowed to + re-take the lesson. It is expected that only in exceptional circumstances + will this option be set to No.