File size: 2,414 Bytes
79418f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
BLOOMS_PHRASES = {
    "Remember": [
        "define", "list", "recall", "identify", "state", "label", "name", "recognize", "find",
        "select", "match", "choose", "give", "write", "tell", "show"
    ],
    "Understand": [
        "classify", "interpret", "summarize", "explain", "estimate", "describe", "discuss",
        "predict", "paraphrase", "restate", "illustrate", "compare", "contrast", "report"
    ],
    "Apply": [
        "apply", "solve", "use", "demonstrate", "calculate", "implement", "perform",
        "execute", "carry out", "practice", "employ", "sketch"
    ],
    "Analyze": [
        "analyze", "differentiate", "organize", "structure", "break down", "distinguish",
        "dissect", "examine", "compare", "contrast", "attribute", "investigate"
    ],
    "Evaluate": [
        "evaluate", "judge", "critique", "assess", "defend", "argue", "select", "support",
        "appraise", "recommend", "conclude", "review"
    ],
    "Create": [
        "create", "design", "compose", "plan", "construct", "produce", "devise", "generate",
        "develop", "formulate", "invent", "build"
    ]
}

DOK_PHRASES = {
    "DOK1": [
        "define", "list", "recall", "compute", "identify", "state", "label", "how many",
        "name", "recognize", "find", "determine", "select", "match", "choose", "give",
        "write", "tell", "show", "point out"
    ],
    "DOK2": [
        "classify", "interpret", "estimate", "organise", "summarise", "explain", "solve",
        "categorize", "group", "compare", "contrast", "distinguish", "make observations",
        "collect data", "display data", "arrange", "sort", "paraphrase", "restate", "predict",
        "approximate", "demonstrate", "illustrate", "describe", "analyze data"
    ],
    "DOK3": [
        "justify", "analyze", "generalise", "compare", "construct", "investigate",
        "support", "defend", "argue", "examine", "differentiate", "criticize", "debate",
        "test", "experiment", "hypothesize", "draw conclusions", "break down", "dissect",
        "probe", "explore", "develop", "formulate"
    ],
    "DOK4": [
        "design", "synthesize", "model", "prove", "evaluate system", "critique", "create",
        "compose", "plan", "invent", "devise", "generate", "build", "construct", "produce",
        "formulate", "improve", "revise", "assess", "appraise", "judge", "recommend",
        "predict outcome", "simulate"
    ]
}