forked from OklahomaChristian/BlackboardQuizGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuestionTypes.htm
234 lines (225 loc) · 9.08 KB
/
QuestionTypes.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<!-- Style sheet -->
<link rel='stylesheet' href='StyleSheets/instructions.css'/>
<title>Blackboard Quiz Generator Instructions</title>
</head>
<body>
<form id="form1" runat="server">
<div class="contentContainer">
<!-- Multiple Choice -->
<div class="contentBlock">
<div class="blockHeader">
Multiple Choice
</div>
<div class="blockContent">
<ul>
<li>Question on a single line.</li>
<li>Answers immediately following the question.</li>
<li>Asterisk (*) in front of the correct choice.</li>
</ul>
<div class="blockExample">
<table width="100%">
<tr>
<td style="width:50%">
<b>Example:</b><br />
<p>1. Which of the following is a prime number?<br />
a) 4<br />
*b) 5<br />
c) 6
</p>
</td>
<td style="width:50%">
<b>Alternate method:</b>
<p>
MC<br />
Which of the following is a prime number?<br />
4<br />
*5<br />
6<br />
</p>
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- True or false questions -->
<div class="contentBlock">
<div class="blockHeader">
True/False
</div>
<div class="blockContent">
<ul>
<li>Question on a single line</li>
<li>The answer on the next line. Can be any of the following: T, t, True, TRUE, true, F, f, False, FALSE, false</li>
</ul>
<div class="blockExample">
<table width="100%">
<tr>
<td style="width:50%">
<b>Example:</b>
<p>
1. 3 is a prime number. <br />
True
</p>
<br/>
</td>
<td style="width:50%">
<b>Alternate method:</b>
<p>
TF<br />
3 is a prime number. <br />
True<br />
</p>
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- Multiple Answer -->
<div class="contentBlock">
<div class="blockHeader">
Multiple Answer
</div>
<div class="blockContent">
<ul>
<li>Exactly the same as multiple choice, only with multiple answers marked correct. </li>
<li>Question on a single line.</li>
<li>Answers immediately following the question.</li>
<li>Asterisk (*) in front of all correct choices.</li>
</ul>
<div class="blockExample">
<table width="100%">
<tr>
<td style="width:50%">
<b>Example:</b>
<p>
1. Which of the following is a prime number?<br />
*a) 2 <br />
*b) 3 <br />
c) 4 <br />
*d) 5
</p>
</td>
<td style="width:50%">
<b>Alternate method:</b>
<p>
MA<br />
Which of the following is a prime number?<br />
*2<br />
*3<br />
4<br />
*5<br />
</p>
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- Essay questions -->
<div class="contentBlock">
<div class="blockHeader">
Essay
</div>
<div class="blockContent">
<ul>
<li>This is simply a question with no answer given.</li>
</ul>
<div class="blockExample">
<table width="100%">
<tr>
<td style="width:50%">
<b>Example:</b>
<p>
1. Tell me your life story.
</p>
</td>
<td style="width:50%">
<b>Alternate method:</b>
<p>
ES<br />
Tell me your life story<br />
</p>
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- Fill in the blank questions -->
<div class="contentBlock">
<div class="blockHeader">
Fill in the blank
</div>
<div class="blockContent">
<ul>
<li>Begin your question with the keyword: blank </li>
<li>Leave a blank somewhere in the question.</li>
<li>Give all of the possible correct answers.</li>
</ul>
<div class="blockExample">
<table width="100%">
<tr>
<td style="width:50%">
<b>Example:</b>
<p>
blank 1. Two plus two equals _____.<br />
a. four<br />
b. 4
</p>
</td>
<td style="width:50%">
<b>Alternate method:</b>
<p>
BL<br />
Christmas falls on December _ <br />
25th. <br />
25th <br />
25 <br />
</p>
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- Matching questions -->
<div class="contentBlock">
<div class="blockHeader">
Matching
</div>
<div class="blockContent">
<ul>
<li>Begin your question with the keyword: match </li>
<li>For every answer there should be a slash between the answer and its match.</li>
</ul>
<div class="blockExample">
<table width="100%">
<tr>
<td style="width:50%">
<b>Example:</b>
<p>
match 1. Match the chapters with their topics.<br />
a) Chapter 13/Exception Handling<br />
b) Chapter 16/File Processing<br />
c) Chapter 10/OOP & Classes<br />
d) Chapter 15/Chars, C-Strings, & the String Class<br />
e) Chapter 12/Not covered in this class<br />
</p>
</td>
<td style="width:50%">
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</form>
</body>
</html>