Bloom's Taxonomy: Cognitive Sequencing
Bloom's Taxonomy (revised 2001 by Krathwohl) defines six cognitive levels that build sequentially. Scripts should introduce concepts at lower levels before advancing to higher-order thinking.
Level 1: Remember
Cognitive Verbs: Define, List, Identify, Label, Match
Script Content: Introduce terminology, definitions, and basic facts. Use visual labels and repeated key terms.
Example: "A variable in Python is a named container for storing data. The syntax is: variable_name = value."
Level 2: Understand
Cognitive Verbs: Explain, Summarize, Describe, Classify, Compare
Script Content: Show relationships, provide analogies, explain "why" behind facts. Use diagrams and flowcharts.
Example: "Variables store data in memory. Think of memory as a warehouse, and the variable name as the shelf label."
Level 3: Apply
Cognitive Verbs: Implement, Use, Execute, Solve, Demonstrate
Script Content: Walk through specific procedures and examples. Show executable code or worked problems.
Example: "Let's create three variables: name = 'Alice', age = 30, is_student = False. Now use them in a print statement."
Level 4: Analyze
Cognitive Verbs: Compare, Differentiate, Categorize, Examine, Test
Script Content: Compare approaches, identify patterns, debug examples. Use side-by-side comparisons.
Example: "Compare list vs. tuple: both store sequences, but tuples are immutable. When would you choose each?"
Level 5: Evaluate
Cognitive Verbs: Critique, Justify, Recommend, Assess, Prioritize
Script Content: Discuss trade-offs, evaluate design decisions, justify choices based on criteria.
Example: "For this use case, a dictionary is better than a list because lookup time is O(1) instead of O(n)."
Level 6: Create
Cognitive Verbs: Design, Construct, Develop, Formulate, Author
Script Content: Guide learners through building novel solutions, combining concepts creatively.
Example: "Design a function that combines file I/O, error handling, and data validation to process CSV uploads."
Script Mapping Rule: Each video should focus on 1-2 adjacent Bloom's levels. A single video that jumps from "Remember" to "Evaluate" will overwhelm learners and reduce retention.
