Course Evaluation Form

This comprehensive course evaluation form helps educational institutions collect meaningful student feedback. The form uses proven assessment frameworks including Likert scales for attitude measurement, matrix questions for multi-aspect evaluation, and NPS for recommendation tracking. Students rate course content organization, instructor effectiveness, appropriate workload level, and learning outcomes achieved. Conditional logic shows improvement-focused questions for dissatisfied students. Suitable for universities, colleges, corporate training, online courses, and professional development programs.

Education & TrainingPopular

Try the Form

Your feedback helps us improve the learning experience
Course Details
 
 
Overall Assessment
Very dissatisfied
Very satisfied
 
0/5
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
370
371
372
373
374
375
376
377
378
379
export function courseEvaluation(form: FormTs) {
// Course Evaluation Form - Educational feedback with comprehensive assessment
// Demonstrates: MatrixQuestion, RatingScale (likert), NPS, conditional sections, Slider
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Course Evaluation',
computedValue: () => 'Your feedback helps us improve the learning experience',
customStyles: {
backgroundColor: '#8b5cf6',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Course Information
// ============================================
const courseInfo = form.addSubform('courseInfo', {
title: 'Course Details',
customStyles: { backgroundColor: '#f5f3ff', padding: '16px', borderRadius: '8px' }
});
 
courseInfo.addRow(row => {
row.addTextbox('courseName', {
label: 'Course Name',
placeholder: 'e.g., Introduction to Data Science',
isRequired: true
}, '2fr');
row.addTextbox('instructorName', {
label: 'Instructor Name',
placeholder: 'e.g., Dr. Jane Smith'
}, '1fr');
});
 
courseInfo.addRow(row => {
row.addDropdown('courseFormat', {
label: 'Course Format',
options: [
{ id: 'inperson', name: 'In-Person' },
{ id: 'online-live', name: 'Online Live (Synchronous)' },
{ id: 'online-self', name: 'Online Self-Paced' },
{ id: 'hybrid', name: 'Hybrid (Mix of In-Person & Online)' }
],
placeholder: 'Select format'
}, '1fr');
row.addDropdown('completionStatus', {
label: 'Completion Status',
options: [
{ id: 'completed', name: 'Completed the course' },
{ id: 'inprogress', name: 'Still in progress' },
{ id: 'dropped', name: 'Dropped/Withdrew' }
],
placeholder: 'Select status'
}, '1fr');
});
 
// ============================================
// SECTION 2: Overall Rating
// ============================================
const overallSection = form.addSubform('overallSection', {
title: 'Overall Assessment',
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
overallSection.addRow(row => {
row.addRatingScale('overallSatisfaction', {
preset: 'satisfaction',
label: 'Overall, how satisfied are you with this course?',
size: 'lg',
alignment: 'center',
isRequired: true
});
});
 
overallSection.addRow(row => {
row.addStarRating('courseRating', {
label: 'Rate this course',
maxStars: 5,
size: 'xl',
alignment: 'center',
showConfettiOnMax: true
});
});
 
// ============================================
// SECTION 3: Course Content Evaluation (MatrixQuestion)
// ============================================
const contentSection = form.addSubform('contentSection', {
title: 'Course Content',
isVisible: () => overallSection.ratingScale('overallSatisfaction')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#fafafa' }
});
 
contentSection.addRow(row => {
row.addMatrixQuestion('contentRatings', {
label: 'Please rate the following aspects of the course content:',
rows: [
{ id: 'relevance', label: 'Content relevance to learning objectives', isRequired: true },
{ id: 'organization', label: 'Course organization and structure', isRequired: true },
{ id: 'difficulty', label: 'Appropriate difficulty level', isRequired: false },
{ id: 'materials', label: 'Quality of learning materials', isRequired: false },
{ id: 'practical', label: 'Practical applicability of content', isRequired: false },
{ id: 'uptodate', label: 'Content is current and up-to-date', isRequired: false }
],
columns: [
{ id: '1', label: 'Strongly Disagree' },
{ id: '2', label: 'Disagree' },
{ id: '3', label: 'Neutral' },
{ id: '4', label: 'Agree' },
{ id: '5', label: 'Strongly Agree' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 4: Instructor Evaluation
// ============================================
const instructorSection = form.addSubform('instructorSection', {
title: 'Instructor Assessment',
isVisible: () => overallSection.ratingScale('overallSatisfaction')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
instructorSection.addRow(row => {
row.addMatrixQuestion('instructorRatings', {
label: 'Please rate the instructor on the following:',
rows: [
{ id: 'knowledge', label: 'Subject matter expertise', isRequired: true },
{ id: 'clarity', label: 'Explains concepts clearly', isRequired: true },
{ id: 'engagement', label: 'Keeps students engaged', isRequired: false },
{ id: 'availability', label: 'Available for questions/help', isRequired: false },
{ id: 'feedback', label: 'Provides helpful feedback', isRequired: false },
{ id: 'respect', label: 'Treats students with respect', isRequired: false }
],
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
});
});
 
instructorSection.addRow(row => {
row.addTextarea('instructorStrengths', {
label: 'What did the instructor do well?',
placeholder: 'Share what you appreciated about the teaching...',
rows: 2,
autoExpand: true
});
});
 
// ============================================
// SECTION 5: Workload & Difficulty
// ============================================
const workloadSection = form.addSubform('workloadSection', {
title: 'Workload & Difficulty',
isVisible: () => overallSection.ratingScale('overallSatisfaction')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#fef3c7' }
});
 
workloadSection.addRow(row => {
row.addSlider('workloadLevel', {
label: 'Course Workload',
min: 1,
max: 5,
step: 1,
showValue: true,
defaultValue: 3
});
});
 
workloadSection.addRow(row => {
row.addTextPanel('workloadLabels', {
computedValue: () => {
const val = workloadSection.slider('workloadLevel')?.value();
if (val === 1) return '1 = Too light, not enough challenge';
if (val === 2) return '2 = Slightly light';
if (val === 3) return '3 = Just right';
if (val === 4) return '4 = Slightly heavy';
if (val === 5) return '5 = Too heavy, overwhelming';
return 'Move slider to rate workload';
},
customStyles: {
textAlign: 'center',
fontSize: '14px',
color: '#666',
fontStyle: 'italic'
}
});
});
 
workloadSection.addRow(row => {
row.addSlider('difficultyLevel', {
label: 'Course Difficulty',
min: 1,
max: 5,
step: 1,
showValue: true,
defaultValue: 3
});
});
 
workloadSection.addRow(row => {
row.addInteger('hoursPerWeek', {
label: 'Approximate hours spent per week (outside class)',
min: 0,
max: 40,
placeholder: 'e.g., 5'
});
});
 
// ============================================
// SECTION 6: Learning Outcomes
// ============================================
const outcomesSection = form.addSubform('outcomesSection', {
title: 'Learning Outcomes',
isVisible: () => overallSection.ratingScale('overallSatisfaction')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#ecfdf5' }
});
 
outcomesSection.addRow(row => {
row.addRatingScale('learningGain', {
preset: 'likert-5',
label: 'I learned a significant amount in this course',
alignment: 'center',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree'
});
});
 
outcomesSection.addRow(row => {
row.addRatingScale('skillsGained', {
preset: 'likert-5',
label: 'I gained practical skills I can apply',
alignment: 'center',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree'
});
});
 
outcomesSection.addRow(row => {
row.addSuggestionChips('skillsLearned', {
label: 'What key skills or knowledge did you gain?',
suggestions: [
{ id: 'critical', name: 'Critical Thinking' },
{ id: 'technical', name: 'Technical Skills' },
{ id: 'communication', name: 'Communication' },
{ id: 'problem', name: 'Problem Solving' },
{ id: 'teamwork', name: 'Teamwork' },
{ id: 'research', name: 'Research Skills' },
{ id: 'creativity', name: 'Creativity' },
{ id: 'domain', name: 'Domain Knowledge' }
],
alignment: 'left'
});
});
 
// ============================================
// SECTION 7: Issues & Suggestions (Conditional)
// ============================================
const issuesSection = form.addSubform('issuesSection', {
title: 'Areas for Improvement',
isVisible: () => {
const rating = overallSection.ratingScale('overallSatisfaction')?.value();
return rating !== null && rating !== undefined && rating <= 3;
},
customStyles: { padding: '16px', borderRadius: '8px', backgroundColor: '#fef2f2', borderLeft: '4px solid #ef4444' }
});
 
issuesSection.addRow(row => {
row.addCheckboxList('issueAreas', {
label: 'What areas need improvement?',
options: [
{ id: 'content', name: 'Course content quality' },
{ id: 'pace', name: 'Course pace (too fast/slow)' },
{ id: 'materials', name: 'Learning materials' },
{ id: 'assignments', name: 'Assignments and exams' },
{ id: 'communication', name: 'Instructor communication' },
{ id: 'technology', name: 'Technology/platform issues' },
{ id: 'support', name: 'Student support' }
],
orientation: 'vertical'
});
});
 
issuesSection.addRow(row => {
row.addTextarea('improvementSuggestions', {
label: 'Specific suggestions for improvement',
placeholder: 'How could this course be improved?',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Recommendation
// ============================================
const recommendSection = form.addSubform('recommendSection', {
title: 'Would You Recommend This Course?',
isVisible: () => overallSection.ratingScale('overallSatisfaction')?.value() !== null,
customStyles: () => {
const nps = recommendSection.ratingScale('npsScore')?.npsCategory();
if (nps === 'promoter') return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (nps === 'passive') return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
if (nps === 'detractor') return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { padding: '16px', borderRadius: '8px', border: '1px dashed #cbd5e1' };
}
});
 
recommendSection.addRow(row => {
row.addRatingScale('npsScore', {
preset: 'nps',
label: 'How likely are you to recommend this course to other students?',
showCategoryLabel: true,
showSegmentColors: true,
showConfettiOnPromoter: true
});
});
 
recommendSection.addRow(row => {
row.addCheckbox('takeAgain', {
label: 'I would take another course with this instructor'
});
});
 
// ============================================
// SECTION 9: Open Feedback
// ============================================
const feedbackSection = form.addSubform('feedbackSection', {
title: 'Additional Comments',
isVisible: () => overallSection.ratingScale('overallSatisfaction')?.value() !== null
});
 
feedbackSection.addRow(row => {
row.addTextarea('bestPart', {
label: 'What was the best part of this course?',
placeholder: 'Share what you enjoyed most...',
rows: 2,
autoExpand: true
});
});
 
feedbackSection.addRow(row => {
row.addTextarea('additionalComments', {
label: 'Any other comments or feedback?',
placeholder: 'We value all your thoughts...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Evaluation',
isVisible: () => overallSection.ratingScale('overallSatisfaction')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Evaluation!',
message: 'Your feedback is essential for improving our courses and teaching. We appreciate you taking the time to share your experience.'
});
}
 

Frequently Asked Questions

When should I send course evaluations to students?

Best practice is to send evaluations during the last 1-2 weeks of the course, before final exams. This ensures students have experienced most of the content but are still engaged. For self-paced courses, trigger the survey at 80-90% completion.

How do I ensure honest student feedback?

Guarantee anonymity and communicate this clearly. Explain how feedback is used to improve future courses. Avoid sending evaluations right before grades are released. Consider having a neutral party collect responses.

What is a good response rate for course evaluations?

Response rates typically range from 30-60%. Increase participation by sending reminders, keeping surveys under 10 minutes, explaining the impact of feedback, and allowing completion during class time.

How should I interpret the Likert scale results?

Calculate mean scores for each question. Scores above 4.0 (on 1-5 scale) are typically considered positive. Compare scores across courses and terms to track trends. Pay attention to standard deviation - high variance may indicate inconsistent experiences.

Can I customize the evaluation criteria?

Yes, all aspects are customizable. Add discipline-specific questions, adjust rating scales, include questions about specific assignments or resources, and tailor the matrix questions to your institution's evaluation framework.

How do I handle negative instructor feedback?

Share feedback constructively with instructors as part of professional development. Focus on actionable improvements rather than criticism. Consider using feedback as one of multiple evaluation sources alongside peer observation and self-reflection.