WebRespond: Master File

The master file contains information about the behavior of the quiz or survey as a whole. You may control who has access to your quiz, the questions that appear on the quiz, the colors and font used to display the quiz questions, and the amount of feedback allowed to the student.

The master file uses a tagged information format similar to HTML. Each piece of information must be enclosed within a recognizable tag. If any text lies outside a recognizable tag, it will be ignored. This allows you to make comments within your master file without affecting the readability of the file by WebRespond.

The acceptable format for a tag consists of three parts

  1. Opening - This consists of a left angle bracket, a tag name and a right angle bracket. If you wanted to open a tag called "Title", you would have a tag opening of <Title>.
  2. Message - This consists of a string of text. Depending on the tag, this text may have to conform to a specific value.
  3. Closing - This consists of a left angle bracket, a forward slash, a tag name and a right angle bracket. If you wanted to close a tag called "Title", you would have a tag closing of </Title>.
Putting these three parts together we could set the quiz title to "Sample Quiz #1" by using the tag <Title>Sample Quiz #1</Title>. Notice that the name of the tag's opening must match the name of the tag's closing. Embedding of tags within other tags is not supported at this time. Case is not important when naming a tag (i.e. Title, title, TITLE, ... ); however, the tag's opening and closing names must match exactly (including case).

Tags used by the Master File

The easiest way to set up a master file is to modify the provided template file. The following tags are recognizable in the master file and are listed in order of importance. You may get by with just the <Question> tag, but you will have better control over your quiz if you use some of the other tags. The following tags have no immediate use; however, they may be used to document various aspects of the master file.

Example: Master File

A sample master file is included so you may become familiar with the look of the file. Also an image of WebRespond in operation is given so you may see the connection between the specified tags and the appearance of the quiz.
<comment>A sample quiz for illustrating WebRespond</comment>
<name>sample.q1</name>                  *** name matches the file name
<title>Sample Quiz #1</title>           *** name of the quiz
<author>Steven Gollmer</author>         *** name of the author
<date>September 17, 1997</date>         *** date the quiz was written
<student>joseph, h219</student>         *** first student allowed into the quiz
<student>debbie, x41</student>          *** second student allowed into the quiz
<question>history.m1</question>         *** begin with a history multiple choice (mc)
<question>literat.s1</question>         *** next use a literature short answer (sa)
<question>commun.t1</question>          *** communications (tf)
<question>physed.e1</question>          *** physical education essay question (es)
<question>eengin.m1</question>          *** electrical engineering (mc)
<question>busstat.t1</question>         *** business statistics (tf)
<question>nursing.s1</question>         *** nursing (sa)
<question>psych.e1</question>           *** psychology (es)
<question>bibleot.m1</question>         *** Old Testament Bible (mc)
<question>biology.m1</question>         *** biology (mc)
<question>music.m1</question>           *** music (mc)
<question>educate.t1</question>         *** education (tf)
<mode>review</mode>                     *** review mode (student can check their score

<comment><reportaddress>gollmers@cedarville.edu</reportaddress></comment>
                                        *** the report address has been commented out

<background>245, 245, 148</background>       *** make the background dark blue
<textcolor>0, 0, 192</textcolor>     *** make the text pale yellow
<font>Serif, 18</font>             *** use a 18 point Times Roman font
<image>paper2.gif</image>               *** load in a background image for a question
The image included below was taken while the master file given above was in operation. Notice that the title appears in the upper left hand corner. From the information given at the upper right hand corner we are looking at the ninth question which is an Old Testament Bible question. The background color of the question is dark blue and the text color is pale yellow. If you are familiar with fonts, you will recognize the Times Roman font and the 18 point type is easily readable.