Changes between Version 7 and Version 8 of BoltTutorialExercises


Ignore:
Timestamp:
Feb 6, 2008, 4:39:37 PM (16 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BoltTutorialExercises

    v7 v8  
    6363 * If you look at your course history, you'll see that Bolt has stored your answers to the exercise, and your score, in its database.
    6464
    65 == Review and repeat ==
     65== Reviewing and repeating exercises ==
    6666
    6767Suppose the student doesn't perform the exercise correctly,
    6868and you want to let them (or require them to) review the lessons and repeat the exercise?
     69Bolt provides a powerful mechanism for this, called '''exercise sets'''.
     70To illustrate this, first let's create a new exercise, '''conifer_ex2.php''':
     71{{{
     72<?php
     73echo "
     74Check the correct statements.
     75";
     76
     77bolt_inclusive_choice(array(
     78    array("Conifers drop their leaves in autumn", 0),
     79    array("All conifers have needle-like leaves", 0),
     80    array("Conifers carry their seeds in cones", 1)
     81));
     82?>
     83}}}
     84
     85[[Image(ex_set.png, nolink)]]