Exam Experience Feedback Form

This exam feedback form helps educators understand student perspectives on assessments. It captures data on exam fairness, time allocation, question clarity, and preparation adequacy. With conditional logic that adapts based on responses, you can gather targeted feedback from students who struggled or excelled. The form includes stress-level tracking and specific improvement suggestions to help instructors refine future exams.

Education & Training

Try the Form

Help us improve future exams by sharing your experience. Your responses are anonymous.
Overall Exam Experience
0/5
Exam Fairness Assessment
Poor Fair Good Very Good Excellent
Question clarity
Were questions easy to understand?
Material coverage
Did it cover what was taught?
Difficulty level
Was difficulty appropriate?
Time allocation
Was there enough time?
Question format
Were question types fair?
Preparation & Time Management
10hours
10 hours
050
0min
0 min
060
Not prepared at all
Extremely prepared
Difficulty Analysis
 
 
Help Us Understand Your Experience
We're sorry to hear the exam didn't go well. Your detailed feedback will help us improve.
 
Final Thoughts
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
export function examFeedbackForm(form: FormTs) {
// Exam Experience Feedback Form
// Demonstrates: MatrixQuestion, RatingScale, StarRating, EmojiRating, Slider, conditional visibility
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Exam Feedback Survey',
computedValue: () => 'Help us improve future exams by sharing your experience. Your responses are anonymous.',
customStyles: {
backgroundColor: '#7c3aed',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Overall Experience
// ============================================
const overallSection = form.addSubform('overallSection', {
title: 'Overall Exam Experience'
});
 
overallSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'How would you rate your overall exam experience?',
maxStars: 5,
size: 'lg',
alignment: 'center',
showConfettiOnMax: true
});
});
 
overallSection.addRow(row => {
row.addEmojiRating('stressLevel', {
label: 'How stressed did you feel during the exam?',
preset: 'custom',
emojis: [
{ id: 'very-calm', emoji: '😌', label: 'Very Calm' },
{ id: 'calm', emoji: '🙂', label: 'Calm' },
{ id: 'moderate', emoji: '😐', label: 'Moderate' },
{ id: 'stressed', emoji: '😰', label: 'Stressed' },
{ id: 'very-stressed', emoji: '😫', label: 'Very Stressed' }
],
size: 'lg',
alignment: 'center'
});
});
 
// ============================================
// SECTION 2: Fairness Assessment (Matrix)
// ============================================
const fairnessSection = form.addSubform('fairnessSection', {
title: 'Exam Fairness Assessment',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
fairnessSection.addRow(row => {
row.addMatrixQuestion('fairnessMatrix', {
label: 'Please rate the following aspects of the exam:',
rows: [
{ id: 'clarity', label: 'Question clarity', description: 'Were questions easy to understand?' },
{ id: 'coverage', label: 'Material coverage', description: 'Did it cover what was taught?' },
{ id: 'difficulty', label: 'Difficulty level', description: 'Was difficulty appropriate?' },
{ id: 'time', label: 'Time allocation', description: 'Was there enough time?' },
{ id: 'format', label: 'Question format', description: 'Were question types fair?' }
],
columns: [
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Very Good' },
{ id: '5', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 3: Time & Preparation
// ============================================
const prepSection = form.addSubform('prepSection', {
title: 'Preparation & Time Management',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
prepSection.addRow(row => {
row.addSlider('studyHours', {
label: 'How many hours did you spend preparing for this exam?',
min: 0,
max: 50,
step: 1,
showValue: true,
unit: 'hours',
defaultValue: 10
}, '1fr');
 
row.addSlider('timeNeeded', {
label: 'How much more time would you have needed? (in minutes)',
min: 0,
max: 60,
step: 5,
showValue: true,
unit: 'min',
defaultValue: 0
}, '1fr');
});
 
prepSection.addRow(row => {
row.addRatingScale('preparedness', {
label: 'How prepared did you feel going into the exam?',
preset: 'likert-5',
lowLabel: 'Not prepared at all',
highLabel: 'Extremely prepared',
alignment: 'center'
});
});
 
// ============================================
// SECTION 4: Difficulty Breakdown
// ============================================
const difficultySection = form.addSubform('difficultySection', {
title: 'Difficulty Analysis',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
difficultySection.addRow(row => {
row.addRadioButton('overallDifficulty', {
label: 'Overall, how would you describe the exam difficulty?',
options: [
{ id: 'too-easy', name: 'Too Easy - Did not challenge my knowledge' },
{ id: 'somewhat-easy', name: 'Somewhat Easy - Could have been harder' },
{ id: 'just-right', name: 'Just Right - Appropriate challenge level' },
{ id: 'somewhat-hard', name: 'Somewhat Hard - Challenging but manageable' },
{ id: 'too-hard', name: 'Too Hard - Unreasonably difficult' }
],
orientation: 'vertical'
});
});
 
difficultySection.addSpacer();
 
difficultySection.addRow(row => {
row.addCheckboxList('challengingAreas', {
label: 'Which topics or sections were most challenging? (Select all that apply)',
options: [
{ id: 'concepts', name: 'Conceptual understanding questions' },
{ id: 'calculations', name: 'Calculations or problem-solving' },
{ id: 'memorization', name: 'Memorization-heavy questions' },
{ id: 'application', name: 'Real-world application questions' },
{ id: 'essay', name: 'Essay or long-form answers' },
{ id: 'multiple-choice', name: 'Tricky multiple choice options' },
{ id: 'time-pressure', name: 'Time pressure on certain sections' }
],
orientation: 'vertical'
});
});
 
// ============================================
// SECTION 5: Conditional Feedback (Low Score)
// ============================================
const lowScoreSection = form.addSubform('lowScoreSection', {
title: 'Help Us Understand Your Experience',
isVisible: () => {
const rating = overallSection.starRating('overallRating')?.value();
return rating !== null && rating !== undefined && rating <= 2;
},
customStyles: {
backgroundColor: '#fef3c7',
padding: '16px',
borderRadius: '8px',
borderLeft: '4px solid #f59e0b'
}
});
 
lowScoreSection.addRow(row => {
row.addTextPanel('lowScoreMessage', {
computedValue: () => "We're sorry to hear the exam didn't go well. Your detailed feedback will help us improve.",
customStyles: {
fontStyle: 'italic',
color: '#92400e',
marginBottom: '12px'
}
});
});
 
lowScoreSection.addRow(row => {
row.addCheckboxList('specificIssues', {
label: 'What specific issues did you encounter?',
options: [
{ id: 'unclear-questions', name: 'Questions were unclear or ambiguous' },
{ id: 'not-covered', name: 'Material was not covered in class' },
{ id: 'no-time', name: 'Not enough time to complete' },
{ id: 'too-detailed', name: 'Required too much detail/memorization' },
{ id: 'study-mismatch', name: 'Study guide didn\'t match exam content' },
{ id: 'format-unfamiliar', name: 'Unfamiliar question formats' },
{ id: 'technical-issues', name: 'Technical issues (if online exam)' }
],
orientation: 'vertical'
});
});
 
lowScoreSection.addSpacer();
 
lowScoreSection.addRow(row => {
row.addTextarea('improvementSuggestions', {
label: 'What specific changes would have made this exam better?',
placeholder: 'Please share your suggestions...',
rows: 4,
autoExpand: true
});
});
 
// ============================================
// SECTION 6: Conditional Feedback (High Score)
// ============================================
const highScoreSection = form.addSubform('highScoreSection', {
title: 'What Worked Well',
isVisible: () => {
const rating = overallSection.starRating('overallRating')?.value();
return rating !== null && rating !== undefined && rating >= 4;
},
customStyles: {
backgroundColor: '#d1fae5',
padding: '16px',
borderRadius: '8px',
borderLeft: '4px solid #10b981'
}
});
 
highScoreSection.addRow(row => {
row.addSuggestionChips('whatWorked', {
label: 'What aspects of the exam worked well? (Select up to 4)',
suggestions: [
{ id: 'clear', name: 'Clear questions' },
{ id: 'fair', name: 'Fair difficulty' },
{ id: 'aligned', name: 'Aligned with course' },
{ id: 'time', name: 'Good time allocation' },
{ id: 'format', name: 'Good format' },
{ id: 'variety', name: 'Question variety' },
{ id: 'relevant', name: 'Practical relevance' }
],
max: 4,
alignment: 'left'
});
});
 
// ============================================
// SECTION 7: Would Recommend
// ============================================
const recommendSection = form.addSubform('recommendSection', {
title: 'Final Thoughts',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
recommendSection.addRow(row => {
row.addThumbRating('wouldRecommend', {
label: 'Would you recommend this exam format to future students?',
showLabels: true,
upLabel: 'Yes, good format',
downLabel: 'No, needs changes',
size: 'lg',
alignment: 'center'
});
});
 
recommendSection.addSpacer();
 
recommendSection.addRow(row => {
row.addTextarea('additionalComments', {
label: 'Any additional comments or suggestions?',
placeholder: 'Share any other thoughts about the exam...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Your Feedback Summary',
isVisible: () => {
const rating = overallSection.starRating('overallRating')?.value();
const stress = overallSection.emojiRating('stressLevel')?.value();
return rating !== null && stress !== null;
}
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const rating = overallSection.starRating('overallRating')?.value();
const stress = overallSection.emojiRating('stressLevel')?.value();
const difficulty = difficultySection.radioButton('overallDifficulty')?.value();
const preparedness = prepSection.ratingScale('preparedness')?.value();
const studyHours = prepSection.slider('studyHours')?.value();
 
if (!rating) return '';
 
const stressLabels: Record<string, string> = {
'very-calm': 'Very Calm',
'calm': 'Calm',
'moderate': 'Moderate',
'stressed': 'Stressed',
'very-stressed': 'Very Stressed'
};
 
const difficultyLabels: Record<string, string> = {
'too-easy': 'Too Easy',
'somewhat-easy': 'Somewhat Easy',
'just-right': 'Just Right',
'somewhat-hard': 'Somewhat Hard',
'too-hard': 'Too Hard'
};
 
let emoji = rating >= 4 ? '🎓' : rating >= 3 ? '📚' : '📝';
let summary = `${emoji} Exam Feedback Summary\n`;
summary += `${'═'.repeat(28)}\n\n`;
summary += `⭐ Overall Rating: ${rating}/5 stars\n`;
if (stress) summary += `😰 Stress Level: ${stressLabels[stress] || stress}\n`;
if (difficulty) summary += `📊 Difficulty: ${difficultyLabels[difficulty] || difficulty}\n`;
if (preparedness) summary += `📖 Preparedness: ${preparedness}/5\n`;
if (studyHours) summary += `⏱️ Study Time: ${studyHours} hours\n`;
 
return summary;
},
customStyles: () => {
const rating = overallSection.starRating('overallRating')?.value() ?? 0;
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (rating >= 4) {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (rating >= 3) {
return { ...baseStyles, backgroundColor: '#e0e7ff', borderLeft: '4px solid #6366f1' };
} else {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
}
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Exam Feedback',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your insights help us create better exams. We review all feedback to improve the assessment experience for future students.'
});
}
 

Frequently Asked Questions

When should I send the exam feedback survey?

Send the survey within 24-48 hours after the exam while the experience is fresh. Avoid sending immediately after a difficult exam when emotions run high - give students a few hours to decompress first.

How can I ensure honest feedback about exam fairness?

The form is designed to be anonymous, which encourages honest responses. The matrix questions provide structured feedback that feels objective, while open-ended questions allow for detailed explanations.

What metrics should I focus on for exam improvement?

Focus on the fairness matrix scores and the gap between 'time needed' vs 'time given'. If many students report feeling unprepared despite studying, review your study materials. High stress with low fairness scores indicates exam redesign is needed.

How do I interpret conflicting feedback?

Look for patterns in the data. If high-performing students find the exam fair while others don't, consider if the exam favors certain learning styles. The conditional follow-up questions help identify specific issues based on student experiences.

Can I customize this for different exam types?

Yes, the template works for midterms, finals, quizzes, and practical exams. Adjust the time and preparation questions based on exam length. For practical exams, you might add questions about equipment or lab conditions.