<html>
<head>
<style type="text/css">
span.foldopened { color: white; font-size: xx-small;
border-width: 1; font-family: monospace; padding: 0em 0.25em 0em 0.25em; background: #e0e0e0;
VISIBILITY: visible;
cursor:hand; }
span.foldclosed { color: #666666; font-size: xx-small;
border-width: 1; font-family: monospace; padding: 0em 0.25em 0em 0.25em; background: #e0e0e0;
VISIBILITY: hidden;
cursor:hand; }
span.foldspecial { color: #666666; font-size: xx-small; border-style: none solid solid none;
border-color: #CCCCCC; border-width: 1; font-family: sans-serif; padding: 0em 0.1em 0em 0.1em; background: #e0e0e0;
cursor:hand; }
li { list-style: none; }
span.l { color: red; font-weight: bold; }
a:link {text-decoration: none; color: black; }
a:visited {text-decoration: none; color: black; }
a:active {text-decoration: none; color: black; }
a:hover {text-decoration: none; color: black; background: #eeeee0; }
</style>
<!-- ^ Position is not set to relative / absolute here because of Mozilla -->
</head>
<body>
<script language="JavaScript">
// Here we implement folding. It works fine with MSIE5.5, MSIE6.0 and
// Mozilla 0.9.6.
if (document.layers) {
//Netscape 4 specific code
pre = 'document.';
post = ''; }
if (document.getElementById) {
//Netscape 6 specific code
pre = 'document.getElementById("';
post = '").style'; }
if (document.all) {
//IE4+ specific code
pre = 'document.all.';
post = '.style'; }
function layer_exists(layer) {
try {
eval(pre + layer + post);
return true; }
catch (error) {
return false; }}
function show_layer(layer) {
eval(pre + layer + post).position = 'relative';
eval(pre + layer + post).visibility = 'visible'; }
function hide_layer(layer) {
eval(pre + layer + post).visibility = 'hidden';
eval(pre + layer + post).position = 'absolute'; }
function hide_folder(folder) {
hide_folding_layer(folder)
show_layer('show'+folder);
scrollBy(0,0); // This is a work around to make it work in Browsers (Explorer, Mozilla)
}
function show_folder(folder) {
// Precondition: all subfolders are folded
show_layer('hide'+folder);
hide_layer('show'+folder);
show_layer('fold'+folder);
scrollBy(0,0); // This is a work around to make it work in Browsers (Explorer, Mozilla)
var i;
for (i=1; layer_exists('fold'+folder+'_'+i); ++i) {
show_layer('show'+folder+'_'+i); }
}
function show_folder_completely(folder) {
// Precondition: all subfolders are folded
show_layer('hide'+folder);
hide_layer('show'+folder);
show_layer('fold'+folder);
scrollBy(0,0); // This is a work around to make it work in Browsers (Explorer, Mozilla)
var i;
for (i=1; layer_exists('fold'+folder+'_'+i); ++i) {
show_folder_completely(folder+'_'+i); }
}
function hide_folding_layer(folder) {
var i;
for (i=1; layer_exists('fold'+folder+'_'+i); ++i) {
hide_folding_layer(folder+'_'+i); }
hide_layer('hide'+folder);
hide_layer('show'+folder);
hide_layer('fold'+folder);
scrollBy(0,0); // This is a work around to make it work in Browsers (Explorer, Mozilla)
}
function fold_document() {
var i;
var folder = '1';
for (i=1; layer_exists('fold'+folder+'_'+i); ++i) {
hide_folder(folder+'_'+i); }
}
function unfold_document() {
var i;
var folder = '1';
for (i=1; layer_exists('fold'+folder+'_'+i); ++i) {
show_folder_completely(folder+'_'+i); }
}
</script>
<SPAN class=foldspecial onclick="fold_document()">All +</SPAN>
<SPAN class=foldspecial onclick="unfold_document()">All -</SPAN>
<p>quiz design
<ul><li><span id="show1_1" class="foldclosed" onClick="show_folder('1_1')" style="POSITION: absolute">+</span> <span id="hide1_1" class="foldopened" onClick="hide_folder('1_1')">-</Span>
build on faq interface
<ul id="fold1_1" style="POSITION: relative; VISIBILITY: visible;"><li><span style="font-family: SansSerif, sans-serif; font-weight: bold; ">all entries must be identified by the registered user name</span>
</li>
<li>using the suggested questions and answer format
</li>
<li>each question should have an area for comments about the question
<ul><li>
</li>
</ul>
</li>
<li>each question will have categories and subcategories taken from Tiki category section
</li>
<li>submitted questions and answers are approved
</li>
</ul>
</li>
<li><span id="show1_2" class="foldclosed" onClick="show_folder('1_2')" style="POSITION: absolute">+</span> <span id="hide1_2" class="foldopened" onClick="hide_folder('1_2')">-</Span>
building on slide show
<ul id="fold1_2" style="POSITION: relative; VISIBILITY: visible;"><li>the questions need to be presented in a slide show for onscreen projection in classroom
</li>
</ul>
</li>
<li><span id="show1_3" class="foldclosed" onClick="show_folder('1_3')" style="POSITION: absolute">+</span> <span id="hide1_3" class="foldopened" onClick="hide_folder('1_3')">-</Span>
Use Case
<ul id="fold1_3" style="POSITION: relative; VISIBILITY: visible;"><li><span id="show1_3_1" class="foldclosed" onClick="show_folder('1_3_1')" style="POSITION: absolute">+</span> <span id="hide1_3_1" class="foldopened" onClick="hide_folder('1_3_1')">-</Span>
student
<ul id="fold1_3_1" style="POSITION: relative; VISIBILITY: visible;"><li>student logs in
<ul><li>goes to quiz section
<ul><li>chooses between
<ul><li>practice tests
</li>
<li>flashcards
</li>
<li>submit questions and answers
<ul><li><p>all students will be encouraged/ required to write new questons and supply correct answers and suggested wrong answers
</li>
</ul>
</li>
<li>formal tests
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>Teacher
<ul><li>teacher logs in
<ul><li>goes to quiz section
<ul><li>chooses between
<ul><li>practice tests
<ul><li>can be viewed as slide show: answers can be submitted via slide show
</li>
</ul>
</li>
<li>flashcards
</li>
<li><span id="show1_3_2" class="foldclosed" onClick="show_folder('1_3_2')" style="POSITION: absolute">+</span> <span id="hide1_3_2" class="foldopened" onClick="hide_folder('1_3_2')">-</Span>
edit submit question and answers
<ul id="fold1_3_2" style="POSITION: relative; VISIBILITY: visible;"><li>sort questions
<ul><li>answered
</li>
<li>type
</li>
<li>category
</li>
<li>student ID
<ul><li>support for internal email
<ul><li>for example
</li>
<li>to:JoshuaPenix
</li>
<li>re: question [include URL]
</li>
<li>message
</li>
</ul>
</li>
<li>New Node
</li>
</ul>
</li>
<li>number of comments
</li>
<li>approved and unapproved
<ul><li>if question(s) is not approved
<ul><li>send message containing Edit question/answer URL to user
<ul><li>block statements
<ul><li>offtopic
</li>
<li>inappropriate
</li>
<li>poorly worded
</li>
<li>confusing
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>if question is approved
<ul><li>send message with URL for edit question/answer
</li>
</ul>
</li>
<li>review all questions in a table
<ul><li>ckbox for approval/ unapproved
<ul><li>rolldown calling on block statement
</li>
<li>area for personal note to be included in message
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>review stats on students
<ul><li>log in
<ul><li>date stamp
</li>
</ul>
</li>
<li>questions attempted
<ul><li>review by category
</li>
</ul>
</li>
<li>questions written
<ul><li>review by category
</li>
</ul>
</li>
<li>amount of time spent using quiz section
<ul><li>review by category
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>sample assingnment
<ul><li>make entries anonymous... students are responsible for not repeating questions submitted by others
<ul><li>students then evaluate questions on
</li>
<li>questions are rated by
<ul><li>difficulty
</li>
<li>interest
</li>
<li>relative to topic
</li>
<li>written by a teacher or by a student
</li>
</ul>
</li>
</ul>
</li>
<li>Read Book One of The Oddyssey
<ul><li><a href="http://www.ibiblio.org/gutenberg/etext99/dyssy10.txt" target="_blank"><span class=l>~</span> The Oddyssey Online
</a>
</li>
<li><span style="font-family: SansSerif, sans-serif; font-weight: bold; ">the teacher would have already created the category Oddyssey Book One</span>
</li>
<li>write 3 factual questions
<ul><li>provide one correct answer and one incorrect answer
</li>
</ul>
</li>
<li>write two inference questions
<ul><li>provide one correct answer and one incorrect answer
</li>
</ul>
</li>
<li>write two deduction questions
<ul><li>
<ul><li>provide one correct answer and one incorrect answer
</li>
</ul>
</li>
</ul>
</li>
<li>write three short answer questions
<ul><li>provide one correct answer and one incorrect answer
</li>
</ul>
</li>
</ul>
</li>
<li>teacher review of user group to verify assignment completion
<ul><li>review of tables
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>Types of questions
<ul><li><p><span style="font-family: SansSerif, sans-serif; font-weight: bold; ">once category is chosen all questions entered in that session belong to that category unless otherwise specified</span>
<p>boolean
<ul><li>options
<ul><li>need to be entered and stored yes/no true/false black/white
</li>
</ul>
</li>
<li>option is selected
<ul><li>user is prompted to choose correct answer first
</li>
<li>wrong answer
<ul><li>support material to suggest why this answer is incorrect
</li>
</ul>
</li>
</ul>
</li>
</ul><p>multiple choice
<ul><li>minimum of three
<ul><li>radio button by the correct answer
<ul><li>text field:correct answer must have justification for answer
</li>
</ul>
</li>
<li>field one
</li>
<li>field two
</li>
<li>field three
</li>
</ul>
</li>
<li>New Node
</li>
</ul><p>short answer
<p>matching
<p>image identification
</li>
</ul>
</li>
<li>IDEAL: questions able to be {INCLUDED} in a wiki page
</li>
<li>Question Entry screen
<ul><li>All questions will have similar qualities
<ul><li>New Node
<ul><li>field for entering justification or support material
</li>
<li>can be displayed as slide show
<ul><li>supporting images!
</li>
</ul>
</li>
<li>can be displayed as flashcards
<ul><li>supporting images!
</li>
</ul>
</li>
<li>track the user ID
</li>
<li>have a history
<ul><li>this way changes can be tracked for security reasons etc.
</li>
</ul>
</li>
<li>support images and internal and external links
<ul><li>catalog listing of images and links in gallery and directory?stions
</li>
</ul>
</li>
<li>support hotwords
</li>
<li>support comments for questions and answers
</li>
<li>not all questions will have answers!
</li>
<li>support for drawings
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>build on survey interface
<ul><li>each question should have a ranking of difficulty
<ul><li>building on survey interface
</li>
<li>the way the questions are rated needs to be saved into a database for recurrent usage
<ul><li><p>for example
<p>questions are rated by
<ul><li>difficulty
<ul><li>easy
</li>
<li>difficult
</li>
</ul>
</li>
<li>interest
<ul><li>rating of 1 low to 10 high
</li>
</ul>
</li>
<li>relative to topic
<ul><li>offtopic
</li>
<li>pertinent
</li>
<li>
</li>
</ul>
</li>
<li>written by a teacher or by a student
</li>
</ul><p>This help teachers identify what students think and feel about the topics and thereby help to plan the materials accordingly
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>reports
<ul><li><span id="show1_4" class="foldclosed" onClick="show_folder('1_4')" style="POSITION: absolute">+</span> <span id="hide1_4" class="foldopened" onClick="hide_folder('1_4')">-</Span>
student
<ul id="fold1_4" style="POSITION: relative; VISIBILITY: visible;"><li><span style="font-family: SansSerif, sans-serif; font-weight: bold; ">categories of questions </span>
</li>
<li>number of questions student has written
</li>
<li>number of questions student attempted
</li>
<li>number of q's student got right
</li>
<li>number of total loging
</li>
<li>total amount of time logged in
</li>
<li>number of times student has edited their question
</li>
</ul>
</li>
<li><span id="show1_5" class="foldclosed" onClick="show_folder('1_5')" style="POSITION: absolute">+</span> <span id="hide1_5" class="foldopened" onClick="hide_folder('1_5')">-</Span>
question
<ul id="fold1_5" style="POSITION: relative; VISIBILITY: visible;"><li>number of times question has been viewed
</li>
<li>number of times question has been edited
<ul><li>who has edited the question
</li>
</ul>
</li>
</ul>
</li>
<li><span id="show1_6" class="foldclosed" onClick="show_folder('1_6')" style="POSITION: absolute">+</span> <span id="hide1_6" class="foldopened" onClick="hide_folder('1_6')">-</Span>
category
<ul id="fold1_6" style="POSITION: relative; VISIBILITY: visible;"><li>total number of questions in categoyr
</li>
<li>total number of possible answers in category
</li>
<li>total number of complete questions and answers
</li>
<li>total number of approved questions
</li>
</ul>
</li>
</ul>
</li>
</ul><SCRIPT language=JavaScript>
fold_document();
</SCRIPT>
</body>
</html>