WebRespond: Quick Start

When you begin using a new program, you want to know how useful it will be to you. This quick start page will give you the bare bones procedure for putting your own quizzes on the web. Once you understand the basic operation of this program, you can dress up the appearance and functionality of your quizzes by using the templates provided on WebRespond's homepage.

The following procedure assumes you know how to add a link to a web page and to submit your web pages to a network site. If you are not familiar with these two procedures, contact your internet provider or contact your network personel for the appropriate instructions.

1. Write your quiz questions.

Begin by deciding how many questions you want to ask and what type of questions they will be. You can have a maximum of 50 questions and they can consist of any combination of multiple choice and true false. Each question must be in a separate file and they must be in plain text or ASCII format. If you are using a word processor, make sure you save each question file in a plain text format. Each question file must have a unique file name.

a. Multiple Choice

If your question is a multiple choice question, cut and paste the following code into your word processor and replace the bold faced text with your question and its corresponding correct and incorrect answers. Don't worry if your question and answer text is too long. Anything between the opening and closing of a tag is recognized. If you have less than three incorrect answers, delete the lines containing the extra incorrect answers. If you have more incorrect answers, copy additional incorrect answer lines. You can have a maximum of 5 incorrect answers.

<type>multiple choice</type>
<question>Ask your question here.</question>
<correct>Place the correct answer here.</correct>
<incorrect>Place the 1st incorrect answer here.</incorrect>
<incorrect>Place the 2nd incorrect answer here.</incorrect>
<incorrect>Place the 3rd incorrect answer here.</incorrect>

b. True False

If your question is a true false question, cut and paste the following code into your word processor and replace the bold faced text with your true and false answers. If you only have a true or a false answer, delete the line that is not used.

<type>true false</type>
<correct>Place the true answer here.</correct>
<incorrect>Place the false answer here.</incorrect>

2. Write the quiz master file.

The master file tells WebRespond the names of your quiz questions. You need to list each file name surrounded by a question tag. Just take the line of code given below and paste it into a word processor document. Replace the bold face type with the full name of your first quiz question. Repeat this procedure for the rest of your questions. Once you have listed all of the file names of your questions, save your master file in plain text or ASCII format. Give your master file a unique file name.

<question>File name of your first question</question>

3. Write the web quiz page.

The web quiz page accesses the program WebRespond. The following code again can be pasted into a word processor document and edited. Replace the bold face type with the name of your master file. Save the file in plain text or ASCII format. When saving this file, use an extension of ".htm" or ".html". This allows your web browser to identify that this is an HTML document. This code can be embedded into a previously existing web document. If that is so, you can skip step 4.

<APPLET	ARCHIVE="wrespond.zip"
	CODEBASE="http://www.cedarville.edu/employee/gollmers/wrespond"
	CODE="WebRespond.class"
	WIDTH=500
	HEIGHT=350>
<PARAM NAME="name" VALUE="Your Master File Name">
</APPLET>

4. Link the web quiz page into a network document.

Now edit the web page that will reference your quiz. Add a link which references the web page generated in step 3.

5. Submit your web pages to the network.

Place all of your quiz question files, master file, and quiz web page into the same directory and submit them to your network. At this point you can go to the web page which calls your quiz page. Clicking on the link to your quiz page should give you a new page which starts up WebRespond. Take your quiz to make sure that the questions are being displayed correctly. If it is not possible to load all of your questions successfully, you need to check your master file and your question files to make sure that all of the names match. If your question files are not in the acceptable format, they may not display correctly. You can look at the Java Console in your web browser for messages which will help to identify the problem. If your web browser is not able to load WebRespond, you will have to check the security options in your web browser.