# Sample quiz description file for use with the "makequiz" shell # script. # # When you are finished customizing below, run "makequiz", # supplying ths name of this file as a parameter, and directing # the results to a file, e.g. # # makequiz myquiz.txt > myquiz.html # # then put the html file somewhere accessible via the web # and point people toward it! On submitting the quiz, people # will be told what they got right and wrong. Optionally, the # results can be emailed to you each time someone submits the # quiz. ########### CUSTOMIZATION begins HERE ############## # How many questions in the quiz? N=2 # To what email address should the results be sent? # (Leave blank if you don't want to be notified.) RECIPIENT=cottrell@ricardo.ecn.wfu.edu # What title for quiz? TITLE="Oogly Quiz number 1" # If you want a logo at the top of the quiz, supply the # URL for the logo file here (otherwise leave blank) LOGO_URL="./econ_color.gif" # Now enter as many questions, with answers, as you wish. # A couple of examples are shown below. You may edit them, and # add more. Note the "R[i]=" syntax for indicating the Right # answer to each question. You can have 4 or 5 answers to # each question. If you have only 4, include a blank "E" as shown # in the sample Question 1. The "FIG" field (optional) can be used # to supply a URL for a graphic (diagram or whatever) to accompany # the given question. It will appear above the question text. Q[1]="What is foo?" A[1]="a root" B[1]="a boot" C[1]="bar" D[1]="another one" E[1]="" R[1]=${C[1]} FIG[1]="" Q[2]="Who is the Queen? (You may refer to the diagram above.)" A[2]="Elizabeth" B[2]="Sharkie" C[2]="Nobody" D[2]="Who?" E[2]="Me!!" R[2]=${A[2]} FIG[2]="queen.gif" ################ END of CUSTOMIZATION #####################