Lecture Feedback Form

Capture immediate student feedback after lectures with this quick, focused form. Designed for high completion rates with a 2-minute target time, it covers essential dimensions: content quality, instructor delivery, pacing, difficulty level, and engagement. Use it consistently to track teaching improvement and identify which lectures resonate most with students.

Education & Training

Try the Form

Quick feedback to help improve your learning experience
Overall Impression
Content
0/5
0/5
0/5
Instructor
0/5
Weak Fair Good Excellent
Enthusiasm & energy
Subject knowledge
Communication skills
Responsive to questions
Pace & Difficulty
Too slow
Too fast
3
3
15
Just Right
Engagement
 
Key Takeaway
Your Feedback Summary
Lecture Feedback Summary ════════════════════════════ Difficulty: Just Right
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 lectureFeedback(form: FormTs) {
// Lecture Feedback Form - Quick post-lecture assessment
// Demonstrates: EmojiRating, StarRating, RatingScale (likert), Slider, SuggestionChips
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Lecture Feedback',
computedValue: () => 'Quick feedback to help improve your learning experience',
customStyles: {
backgroundColor: '#059669',
color: 'white',
padding: '20px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Quick Overall Rating
// ============================================
const overallSection = form.addSubform('overall', {
title: 'Overall Impression'
});
 
overallSection.addRow(row => {
row.addEmojiRating('quickRating', {
label: 'How was this lecture overall?',
preset: 'satisfaction',
size: 'lg',
alignment: 'center'
});
});
 
// ============================================
// SECTION 2: Content Quality
// ============================================
const contentSection = form.addSubform('content', {
title: 'Content'
});
 
contentSection.addRow(row => {
row.addStarRating('contentQuality', {
label: 'Content quality and relevance',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
contentSection.addRow(row => {
row.addStarRating('clarity', {
label: 'How clearly was the material explained?',
maxStars: 5,
size: 'md',
alignment: 'center'
}, '1fr');
row.addStarRating('examples', {
label: 'Quality of examples and illustrations',
maxStars: 5,
size: 'md',
alignment: 'center'
}, '1fr');
});
 
contentSection.addRow(row => {
row.addSuggestionChips('contentStrengths', {
label: 'What worked well? (select up to 3)',
suggestions: [
{ id: 'organized', name: 'Well organized' },
{ id: 'relevant', name: 'Relevant examples' },
{ id: 'visuals', name: 'Good visuals' },
{ id: 'depth', name: 'Good depth' },
{ id: 'practical', name: 'Practical focus' },
{ id: 'interesting', name: 'Interesting topic' },
{ id: 'clear', name: 'Clear explanations' },
{ id: 'connections', name: 'Connected concepts' }
],
max: 3,
alignment: 'center'
});
});
 
// ============================================
// SECTION 3: Instructor Delivery
// ============================================
const instructorSection = form.addSubform('instructor', {
title: 'Instructor'
});
 
instructorSection.addRow(row => {
row.addStarRating('instructorRating', {
label: 'Instructor performance',
maxStars: 5,
size: 'lg',
alignment: 'center'
});
});
 
instructorSection.addRow(row => {
row.addMatrixQuestion('instructorAspects', {
label: 'Rate the instructor on:',
rows: [
{ id: 'enthusiasm', label: 'Enthusiasm & energy' },
{ id: 'knowledge', label: 'Subject knowledge' },
{ id: 'communication', label: 'Communication skills' },
{ id: 'responsiveness', label: 'Responsive to questions' }
],
columns: [
{ id: 'weak', label: 'Weak' },
{ id: 'fair', label: 'Fair' },
{ id: 'good', label: 'Good' },
{ id: 'excellent', label: 'Excellent' }
],
fullWidth: true
});
});
 
// ============================================
// SECTION 4: Pace & Difficulty
// ============================================
const paceSection = form.addSubform('pace', {
title: 'Pace & Difficulty'
});
 
paceSection.addRow(row => {
row.addRatingScale('paceRating', {
label: 'How was the pace of the lecture?',
preset: 'custom',
min: 1,
max: 5,
lowLabel: 'Too slow',
highLabel: 'Too fast',
alignment: 'center'
});
});
 
paceSection.addRow(row => {
row.addTextPanel('paceNote', {
computedValue: () => {
const pace = paceSection.ratingScale('paceRating')?.value();
if (pace === 1 || pace === 2) return 'Could we move faster?';
if (pace === 4 || pace === 5) return 'Need more time to absorb the material?';
if (pace === 3) return 'Great - the pace seems right!';
return '';
},
customStyles: () => {
const pace = paceSection.ratingScale('paceRating')?.value();
if (pace === 3) return { color: '#059669', fontStyle: 'italic', textAlign: 'center' };
if (pace !== null && pace !== undefined) return { color: '#6b7280', fontStyle: 'italic', textAlign: 'center' };
return { display: 'none' };
},
isVisible: () => paceSection.ratingScale('paceRating')?.value() !== null
});
});
 
paceSection.addSpacer({ height: '12px' });
 
paceSection.addRow(row => {
row.addSlider('difficultyLevel', {
label: 'How difficult was the material?',
min: 1,
max: 5,
step: 1,
defaultValue: 3,
showValue: true
});
});
 
paceSection.addRow(row => {
row.addTextPanel('difficultyLabel', {
computedValue: () => {
const level = paceSection.slider('difficultyLevel')?.value();
const labels = ['', 'Very Easy', 'Easy', 'Just Right', 'Challenging', 'Very Difficult'];
return labels[level || 0] || '';
},
customStyles: {
textAlign: 'center',
fontSize: '14px',
color: '#6b7280',
marginTop: '-8px'
}
});
});
 
// ============================================
// SECTION 5: Engagement
// ============================================
const engagementSection = form.addSubform('engagement', {
title: 'Engagement'
});
 
engagementSection.addRow(row => {
row.addRadioButton('attentionLevel', {
label: 'How engaged were you during the lecture?',
options: [
{ id: 'fully', name: 'Fully engaged throughout' },
{ id: 'mostly', name: 'Engaged most of the time' },
{ id: 'sometimes', name: 'Sometimes distracted' },
{ id: 'struggled', name: 'Struggled to stay engaged' }
],
orientation: 'vertical'
});
});
 
engagementSection.addRow(row => {
row.addCheckboxList('distractionReasons', {
label: 'What made it hard to stay engaged?',
options: [
{ id: 'too-long', name: 'Lecture too long' },
{ id: 'monotone', name: 'Monotone delivery' },
{ id: 'confusing', name: 'Confusing content' },
{ id: 'no-breaks', name: 'No breaks' },
{ id: 'not-relevant', name: 'Not relevant to me' },
{ id: 'tired', name: 'Personal fatigue' }
],
orientation: 'vertical',
isVisible: () => {
const attention = engagementSection.radioButton('attentionLevel')?.value();
return attention === 'sometimes' || attention === 'struggled';
}
});
});
 
engagementSection.addRow(row => {
row.addThumbRating('interactionOpportunity', {
label: 'Were there enough opportunities to ask questions or participate?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center'
});
});
 
// ============================================
// SECTION 6: Key Takeaway
// ============================================
const takeawaySection = form.addSubform('takeaway', {
title: 'Key Takeaway',
isVisible: () => contentSection.starRating('contentQuality')?.value() !== null
});
 
takeawaySection.addRow(row => {
row.addTextarea('mainTakeaway', {
label: 'What was your main takeaway from this lecture?',
placeholder: 'In one or two sentences, what will you remember?',
rows: 2
});
});
 
takeawaySection.addRow(row => {
row.addTextarea('confusedAbout', {
label: 'Anything you found confusing or would like clarified?',
placeholder: 'Optional - specific topics or concepts...',
rows: 2
});
});
 
// ============================================
// SECTION 7: Quick Recommendation
// ============================================
const recommendSection = form.addSubform('recommend', {
title: 'Recommendation',
isVisible: () => overallSection.emojiRating('quickRating')?.value() !== null
});
 
recommendSection.addRow(row => {
row.addRatingScale('recommend', {
label: 'Would you recommend this lecture to other students?',
preset: 'likert-5',
lowLabel: 'Not at all',
highLabel: 'Definitely',
alignment: 'center'
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Your Feedback Summary',
isVisible: () => {
const content = contentSection.starRating('contentQuality')?.value();
const instructor = instructorSection.starRating('instructorRating')?.value();
return content !== null && instructor !== null;
}
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const overall = overallSection.emojiRating('quickRating')?.value();
const content = contentSection.starRating('contentQuality')?.value();
const clarity = contentSection.starRating('clarity')?.value();
const instructor = instructorSection.starRating('instructorRating')?.value();
const pace = paceSection.ratingScale('paceRating')?.value();
const difficulty = paceSection.slider('difficultyLevel')?.value();
const recommend = recommendSection.ratingScale('recommend')?.value();
 
const moodLabels: Record<string, string> = {
'very-bad': 'Poor',
'bad': 'Below Average',
'neutral': 'Average',
'good': 'Good',
'excellent': 'Excellent'
};
 
const paceLabels = ['', 'Too Slow', 'Slow', 'Just Right', 'Fast', 'Too Fast'];
const diffLabels = ['', 'Very Easy', 'Easy', 'Just Right', 'Challenging', 'Very Difficult'];
 
let summary = 'Lecture Feedback Summary\n';
summary += '═'.repeat(28) + '\n\n';
 
if (overall) {
summary += `Overall: ${moodLabels[overall] || overall}\n`;
}
if (content) {
summary += `Content: ${'★'.repeat(content)}${'☆'.repeat(5 - content)}\n`;
}
if (clarity) {
summary += `Clarity: ${'★'.repeat(clarity)}${'☆'.repeat(5 - clarity)}\n`;
}
if (instructor) {
summary += `Instructor: ${'★'.repeat(instructor)}${'☆'.repeat(5 - instructor)}\n`;
}
if (pace) {
summary += `\nPace: ${paceLabels[pace]}\n`;
}
if (difficulty) {
summary += `Difficulty: ${diffLabels[difficulty]}\n`;
}
if (recommend) {
summary += `\nWould Recommend: ${recommend}/5`;
}
 
return summary;
},
customStyles: () => {
const overall = overallSection.emojiRating('quickRating')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (overall === 'excellent' || overall === 'good') {
return { ...baseStyles, backgroundColor: '#ecfdf5', borderLeft: '4px solid #059669' };
} else if (overall === 'very-bad' || overall === 'bad') {
return { ...baseStyles, backgroundColor: '#fef2f2', borderLeft: '4px solid #dc2626' };
}
return { ...baseStyles, backgroundColor: '#f0fdf4', borderLeft: '4px solid #059669' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => {
const content = contentSection.starRating('contentQuality')?.value();
const instructor = instructorSection.starRating('instructorRating')?.value();
return content !== null && instructor !== null;
}
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank you!',
message: 'Your feedback helps improve the learning experience. We appreciate you taking the time to share your thoughts.'
});
}
 

Frequently Asked Questions

How long does this feedback form take to complete?

The form is designed for approximately 2 minutes completion time. It focuses on essential feedback dimensions while offering optional detailed comments for students who want to share more.

When should students complete the lecture feedback?

Ideally immediately after the lecture ends, while the experience is fresh. Consider displaying a QR code during the last slide or sharing the link via your LMS as class concludes.

How can I track improvement over multiple lectures?

Use the same form consistently for each lecture. The standardized questions enable you to compare ratings over time and identify trends in student satisfaction and engagement.

Should feedback be anonymous?

Anonymous feedback typically generates more honest responses. The template includes an optional email field for students who want follow-up, keeping the default experience anonymous.

What if students rate the pace as too fast or too slow?

The form captures pacing feedback on a scale from 'too slow' to 'too fast', letting you identify if you need to adjust. Conditional follow-up questions appear when students indicate pacing issues.