You are viewing this question as it will appear in the manual grading interface. Return to the normal view when you are done.

Element pl-order-blocks: Dragging blocks to form the solution of a problem

This pl-order-blocks has become increasingly complex, with many different possible combinations of options. Here we test a bunch of these different configurations.

Drag from here:
  • def my_sum(first, second):
  • return first + second
Construct your solution here:
Drag from here:
  • def my_sum(first, second):
  • return first + second
Construct your solution here:
Drag from here:
  • Assume $A \land B \land C$.
  • Then $A$ is true.
  • Then $C$ is true.
  • Since $A$ and $C$, we know $A \land C$
Construct your solution here:
Drag from here:
  • Then $A$ is true.
  • Then $C$ is true.
  • Since $A$ and $C$, we know $A \land C$
  • Assume $A \land B \land C$.
Construct your solution here:
Drag from here:
  • def my_sum(first, second):
  • return sum
  • sum + first
  • sum + second
  • sum += first
  • sum += second
  • sum = 0
Construct your solution here:
Drag from here:
  • 2
  • 4
  • 3
  • 11
  • 10
  • 9
  • 7
  • 1
  • 6
  • 5
  • 8
Construct your solution here:
Drag from here:
  • A
  • AA
  • B
  • C
  • D
Construct your solution here:
Drag from here:
  • first
  • second
Construct your solution here:
Drag from here:
  • all or nothing first
  • all or nothing second
  • all or nothing third
Construct your solution here:
Drag from here:
  • first
  • second
  • third
Construct your solution here:
Drag from here:
  • Let $a, b, c$ be arbitrary positive integers.
  • By definition, there exists $q_1$ such that $b=a\cdot q_1$ and there exists $q_2$ such that $c = b\cdot q_2.$
  • Assume that $a|b$ and $b|c.$
  • By definition $a|c.$
  • We can see that $c = b\cdot q_2 = (a\cdot q_1)\cdot q_2 = a \cdot (q_1\cdot q_2).$
Construct your solution here:
Drag from here:
  • Some correct block before the distractor group
  • Distractor 1
  • Distractor 2
  • Correct code
Construct your solution here:
Drag from here:
  • Some correct block before the distractor group
  • Correct code
  • Distractor 1
  • Distractor 2
Construct your solution here:
Drag from here:
  • Some correct block between the distractor group
  • Some correct block before the distractor group
  • Some correct block after the distractor group
  • Correct code 1
  • Correct code 2
  • Distractor 1 for correct code 2
  • Distractor 1 for correct code 1
  • Distractor 2 for correct code 1
  • Distractor 2 for correct code 2
Construct your solution here:
Drag from here:
  • $2^n \gt 2(n-1)$ by IH
  • Let $n$ be an arbitrary integer.
  • $2^n = 2 \cdot 2^{n-1}$
  • Assume $2^k \gt k$ for some integer $1 \leq k \lt n$
  • $n=1: 2^1 \gt 1$
  • Since $2(n-1) \gt 2n-n$, then $2^n \gt n$
Construct your solution here:
  • Base Case
  • Induction Hypothesis
  • Inductive Step

Correct answer

Correct answer (there may be other correct orders, correct indentation required):
  • def my_sum(first, second):
  • return first + second
Correct answer (there may be other correct orders, correct indentation required):
  • def my_sum(first, second):
  • return first + second
Correct answer (there may be other correct orders):
  • Assume $A \land B \land C$.
  • Then $A$ is true.
  • Then $C$ is true.
  • Since $A$ and $C$, we know $A \land C$
Correct answer (there may be other correct orders):
  • Assume $A \land B \land C$.
  • Then $A$ is true.
  • Then $C$ is true.
  • Since $A$ and $C$, we know $A \land C$
Correct answer (there may be other correct orders, correct indentation required):
  • def my_sum(first, second):
  • sum = 0
  • sum += second
  • sum += first
  • return sum


Incorrect Blocks (these blocks should not be included in your solution):
  • sum + first
  • sum + second
Correct answer (there may be other correct orders):
  • 1
  • 6
  • 8
  • 7
  • 9
  • 4
  • 2
  • 3
  • 5
  • 10
  • 11
Correct answer (there may be other correct orders):
  • A
  • AA


Incorrect Blocks (these blocks should not be included in your solution):
  • B
  • C
  • D
Correct answer (there may be other correct orders):
  • first
  • second
Correct answer (in the specified order):
  • all or nothing first
  • all or nothing second
  • all or nothing third
Correct answer (in the specified order):
  • first
  • second
  • third
Correct answer (there may be other correct orders):
  • Let $a, b, c$ be arbitrary positive integers.
  • Assume that $a|b$ and $b|c.$
  • By definition, there exists $q_1$ such that $b=a\cdot q_1$ and there exists $q_2$ such that $c = b\cdot q_2.$
  • We can see that $c = b\cdot q_2 = (a\cdot q_1)\cdot q_2 = a \cdot (q_1\cdot q_2).$
  • By definition $a|c.$
Correct answer (there may be other correct orders):
  • Some correct block before the distractor group
  • Correct code


Incorrect Blocks (these blocks should not be included in your solution):
  • Distractor 1
  • Distractor 2
Correct answer (there may be other correct orders):
  • Some correct block before the distractor group
  • Correct code


Incorrect Blocks (these blocks should not be included in your solution):
  • Distractor 1
  • Distractor 2
Correct answer (there may be other correct orders):
  • Some correct block before the distractor group
  • Correct code 1
  • Some correct block between the distractor group
  • Correct code 2
  • Some correct block after the distractor group


Incorrect Blocks (these blocks should not be included in your solution):
  • Distractor 1 for correct code 2
  • Distractor 1 for correct code 1
  • Distractor 2 for correct code 1
  • Distractor 2 for correct code 2
Correct answer (there may be other correct orders):
  • Base Case
  • $n=1: 2^1 \gt 1$
  • Induction Hypothesis
  • Assume $2^k \gt k$ for some integer $1 \leq k \lt n$
  • Inductive Step
  • Let $n$ be an arbitrary integer.
  • $2^n = 2 \cdot 2^{n-1}$
  • $2^n \gt 2(n-1)$ by IH
  • Since $2(n-1) \gt 2n-n$, then $2^n \gt n$

Student view placeholder

In student views this area is used for assessment and score info.
Tools

Staff information

Question

Title:
Element pl-order-blocks: Dragging blocks to form the solution of a problem

Variant

Started at:
2026-08-04 23:54:49 (CDT)
Duration:
0s
Show/Hide answer
{
  "test1": [
    {
      "tag": "a3db403d-5a6a-4ca0-9266-d08dc4f668c0",
      "uuid": "ecf33608-2f91-480b-8457-6a459dc92aea",
      "final": false,
      "index": 0,
      "indent": 0,
      "depends": [],
      "ranking": 1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "def my_sum(first, second):",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "dc834371-ea15-4f25-b9d7-b237f53b0ae9",
      "uuid": "d18d778e-f372-4f79-b412-23254677f275",
      "final": false,
      "index": 1,
      "indent": 1,
      "depends": [],
      "ranking": 2,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "return first + second",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "test2": [
    {
      "tag": "aa86512d-2b8f-47f0-a4b8-0d8c4e3b7897",
      "uuid": "a2e7ade1-26dc-433f-81f0-3048337db72e",
      "final": false,
      "index": 0,
      "indent": 0,
      "depends": [],
      "ranking": 1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "def my_sum(first, second):",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "b3d16eca-527f-4a5a-bbb7-54788b190b00",
      "uuid": "f50e11bd-9148-404d-99c2-5d3a8f2e6979",
      "final": false,
      "index": 1,
      "indent": 1,
      "depends": [],
      "ranking": 2,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "return first + second",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "test3": [
    {
      "tag": "1",
      "uuid": "bc51d5e7-02a2-43fd-9276-e8de6e4668f1",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": " Assume $A \\land B \\land C$.",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "2",
      "uuid": "b4cec7d8-3d0d-44b3-8762-86656425513b",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [
        "1"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": " Then $A$ is true. ",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "3",
      "uuid": "dabb8110-6481-4c7b-96e2-42a45c3686a9",
      "final": false,
      "index": 2,
      "indent": null,
      "depends": [
        "1"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": " Then $C$ is true. ",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "4",
      "uuid": "a142a623-48e5-42d8-a198-bc943c791dc3",
      "final": false,
      "index": 3,
      "indent": null,
      "depends": [
        "2",
        "3"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": " Since $A$ and $C$, we know $A \\land C$",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "test4": [
    {
      "tag": "1",
      "uuid": "d9584f48-16a5-4361-b7dd-5bc1c1605ca5",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": " Assume $A \\land B \\land C$.",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "2",
      "uuid": "e4b306e7-aa96-4c4b-8b25-ccfbc515ebe3",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [
        "1"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": " Then $A$ is true. ",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "3",
      "uuid": "d6172364-0238-4287-846b-ac61fa9cb0c2",
      "final": false,
      "index": 2,
      "indent": null,
      "depends": [
        "1"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": " Then $C$ is true. ",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "4",
      "uuid": "ea7594ea-6964-4623-b521-eea8031b1fd8",
      "final": false,
      "index": 3,
      "indent": null,
      "depends": [
        "2",
        "3"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": " Since $A$ and $C$, we know $A \\land C$",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "hw3_q1_c": [
    {
      "tag": "1",
      "uuid": "cecd5fc2-0bef-4615-a6d1-d09d62c4e07b",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Let $a, b, c$ be arbitrary positive integers.",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "2",
      "uuid": "dae1d77f-fbe4-4aef-be29-98adcd3b4694",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [
        "1"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Assume that $a|b$ and $b|c.$",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": "This step should come after introducing the variables and before applying the definition of divisibility.",
      "distractor_feedback": null
    },
    {
      "tag": "3",
      "uuid": "bc00b7bb-f8d8-4617-845d-d7cd5d94861c",
      "final": false,
      "index": 2,
      "indent": null,
      "depends": [
        "2"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "By definition, there exists $q_1$ such that $b=a\\cdot q_1$ and there exists $q_2$ such that $c = b\\cdot q_2.$",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "4",
      "uuid": "eaedefa9-0979-4fe9-9ca7-9a46102da12d",
      "final": false,
      "index": 3,
      "indent": null,
      "depends": [
        "3"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "We can see that $c = b\\cdot q_2 = (a\\cdot q_1)\\cdot q_2 = a \\cdot (q_1\\cdot q_2).$",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "5",
      "uuid": "d1642829-5222-4627-ae1c-1fe4887246c4",
      "final": false,
      "index": 4,
      "indent": null,
      "depends": [
        "4"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "By definition $a|c.$",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "pre_dragged": [
    {
      "tag": "1",
      "uuid": "e0a64f95-21a2-425e-81e7-03415e12301b",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Base Case",
      "distractor_for": null,
      "initially_placed": true,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "2",
      "uuid": "c1b2b904-d7c6-4e45-a3e1-6767a71a31c4",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [
        "1"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "$n=1: 2^1 \\gt 1$",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "3",
      "uuid": "d38c7db1-c442-49a9-8d0f-a8aae5ab9c07",
      "final": false,
      "index": 2,
      "indent": null,
      "depends": [
        "2"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Induction Hypothesis",
      "distractor_for": null,
      "initially_placed": true,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "4",
      "uuid": "da5211b5-319d-4909-8354-5a2f9687233f",
      "final": false,
      "index": 3,
      "indent": null,
      "depends": [
        "3"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Assume $2^k \\gt k$ for some integer $1 \\leq k \\lt n$",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "5",
      "uuid": "f90d0c9f-cd44-42d2-b099-7d85947355e8",
      "final": false,
      "index": 4,
      "indent": null,
      "depends": [
        "4"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Inductive Step",
      "distractor_for": null,
      "initially_placed": true,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "6",
      "uuid": "e5bd321d-9f81-4990-95e1-7b591f884da3",
      "final": false,
      "index": 5,
      "indent": null,
      "depends": [
        "5"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Let $n$ be an arbitrary integer.",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "7",
      "uuid": "fa2322da-744a-4bd4-b85f-ae47f8884943",
      "final": false,
      "index": 6,
      "indent": null,
      "depends": [
        "6"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "$2^n = 2 \\cdot 2^{n-1}$",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "8",
      "uuid": "bfce0236-ee8d-41c8-8446-6aeac794fb00",
      "final": false,
      "index": 7,
      "indent": null,
      "depends": [
        "7"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "$2^n \\gt 2(n-1)$  by IH",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "9",
      "uuid": "e05ce3c4-6f73-44c3-9416-b344da20ec87",
      "final": false,
      "index": 8,
      "indent": null,
      "depends": [
        "8"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Since $2(n-1) \\gt 2n-n$, then $2^n \\gt n$",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "test-solving-1": [
    {
      "tag": "e99d10b7-1b6d-4297-9374-8e4c74eea567",
      "uuid": "cc269428-fd95-4900-ace0-4dfb25e83916",
      "final": false,
      "index": 4,
      "indent": 0,
      "depends": [],
      "ranking": 1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "def my_sum(first, second):",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "e95e0c78-9a63-481c-812b-fc09720cfd05",
      "uuid": "ba301846-bac0-4365-991f-a80b7c5680f6",
      "final": false,
      "index": 2,
      "indent": 1,
      "depends": [],
      "ranking": 2,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "sum = 0",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "dab69449-d67b-4cbe-ac07-9c96d967fd53",
      "uuid": "b002bf80-2b76-4bd2-bd9f-6d9feb1ec121",
      "final": false,
      "index": 1,
      "indent": 1,
      "depends": [],
      "ranking": 3,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "sum += second",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "fec501ab-2d0c-45b2-8436-476f14614053",
      "uuid": "ed14bf60-301c-4c0b-bddc-8f1321a335a2",
      "final": false,
      "index": 3,
      "indent": 1,
      "depends": [],
      "ranking": 3,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "sum += first",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "affa29c2-dc94-411a-9b9a-d0d604e3b995",
      "uuid": "ee1ce674-9668-4376-835e-0908184ffc72",
      "final": false,
      "index": 0,
      "indent": 1,
      "depends": [],
      "ranking": 4,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "return sum",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "test-solving-2": [
    {
      "tag": "1",
      "uuid": "c8678c7c-d531-47d9-8d41-3623bb080177",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": " 1",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "6",
      "uuid": "c158401f-398e-4a45-a099-e5cf32554c10",
      "final": false,
      "index": 6,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": "g2",
        "depends": [
          "1"
        ]
      },
      "inner_html": " 6",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "8",
      "uuid": "c31f8188-63f6-40b8-acde-5398f73b1b7f",
      "final": false,
      "index": 8,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": "g2",
        "depends": [
          "1"
        ]
      },
      "inner_html": " 8",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "7",
      "uuid": "fc095d3e-bece-4d45-baee-8e33d5dd0b58",
      "final": false,
      "index": 7,
      "indent": null,
      "depends": [
        "8"
      ],
      "ranking": -1,
      "group_info": {
        "tag": "g2",
        "depends": [
          "1"
        ]
      },
      "inner_html": " 7",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "9",
      "uuid": "cee7fabf-9e9b-4cfb-a93c-cfab4fac4efd",
      "final": false,
      "index": 9,
      "indent": null,
      "depends": [
        "7"
      ],
      "ranking": -1,
      "group_info": {
        "tag": "g2",
        "depends": [
          "1"
        ]
      },
      "inner_html": " 9",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "4",
      "uuid": "b04e204b-f994-4256-92a5-37878cd2c1b6",
      "final": false,
      "index": 3,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": "g1",
        "depends": [
          "1"
        ]
      },
      "inner_html": "4 ",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "2",
      "uuid": "b69ac089-c1d7-4f72-b2b9-a95e890328d0",
      "final": false,
      "index": 5,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": "g1",
        "depends": [
          "1"
        ]
      },
      "inner_html": " 2",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "3",
      "uuid": "a2064b93-1b47-4727-aea5-802981ff1abd",
      "final": false,
      "index": 4,
      "indent": null,
      "depends": [
        "2"
      ],
      "ranking": -1,
      "group_info": {
        "tag": "g1",
        "depends": [
          "1"
        ]
      },
      "inner_html": " 3",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "5",
      "uuid": "ae794309-2081-464d-982c-38a518088595",
      "final": false,
      "index": 2,
      "indent": null,
      "depends": [
        "3",
        "4"
      ],
      "ranking": -1,
      "group_info": {
        "tag": "g1",
        "depends": [
          "1"
        ]
      },
      "inner_html": " 5",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "10",
      "uuid": "e73a578c-518a-4c1b-972f-358a6d9e078a",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": "g3",
        "depends": [
          "1",
          "g2"
        ]
      },
      "inner_html": "10",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "11",
      "uuid": "bca731dd-2589-4d39-9674-903317c95784",
      "final": false,
      "index": 10,
      "indent": null,
      "depends": [
        "g1",
        "g2",
        "g3"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "11",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "test-duplicate-tags": [
    {
      "tag": "1",
      "uuid": "e45ea912-d037-444d-a151-2116ad58000d",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "A",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "2",
      "uuid": "e9d7ebba-fcb8-4344-8869-d00a474b1901",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [
        "1"
      ],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "AA",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "test-not-grading-indent": [
    {
      "tag": "a512c9ff-1411-40a3-9f06-6b93af39c25a",
      "uuid": "cb7a3746-c7ea-4ff0-8674-7df325caa611",
      "final": false,
      "index": 0,
      "indent": -1,
      "depends": [],
      "ranking": 1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "first",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "c2b42ebe-d85b-4fb5-977b-9a8bffdcd54f",
      "uuid": "b57cb7a1-bf19-461e-88d0-e12513746784",
      "final": false,
      "index": 1,
      "indent": -1,
      "depends": [],
      "ranking": 2,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "second",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "randomize-distractors-when-ordered": [
    {
      "tag": "correct-block-no-distractors",
      "uuid": "f004527f-2ccf-4629-8de1-4bd98e3c1c85",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Some correct block before the distractor group",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "correct-block",
      "uuid": "c72f8e9e-fff7-4c6c-b1a8-00d9d4f573df",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code",
      "distractor_bin": "f1e8f89d-ea86-4f0f-a764-1ee6f28e295f",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "randomize-distractors-when-ordered-2": [
    {
      "tag": "correct-block-no-distractors",
      "uuid": "fc533961-1ea1-4f1d-a4cd-c4a0aa01c07d",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Some correct block before the distractor group",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "correct-block",
      "uuid": "e29656d3-36ea-4656-8eae-14760b6094ec",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code",
      "distractor_bin": "d21f6210-65bd-409d-8b48-c51e98806f9a",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "randomize-distractors-when-ordered-3": [
    {
      "tag": "correct-block-no-distractors",
      "uuid": "dac1cdc1-c4dd-4a09-9dd4-8c3a3c259036",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Some correct block before the distractor group",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "correct-block1",
      "uuid": "f9565caf-4b96-490a-acb4-255c8d722c2e",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code 1",
      "distractor_bin": "b933cf47-50a3-4e59-9426-28d434136147",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "correct-block-no-distractors2",
      "uuid": "ccc3461e-c844-4d82-a7aa-2fd289b066f8",
      "final": false,
      "index": 4,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Some correct block between the distractor group",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "correct-block2",
      "uuid": "b539dae6-e1c0-4586-87a7-97996154df20",
      "final": false,
      "index": 5,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code 2",
      "distractor_bin": "f18b6449-ccd4-4202-8fd5-8ef68c8ad45b",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "correct-block-no-distractors3",
      "uuid": "e7209cdc-8605-4c0a-a310-20e916fa1385",
      "final": false,
      "index": 8,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Some correct block after the distractor group",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "test-ordered-grading-method-all-or-nothing": [
    {
      "tag": "bc25aecd-2ebf-46d0-ad99-4ac2f1be1bf5",
      "uuid": "a87bb27b-3a01-4976-b8b2-74dad84b0f62",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "all or nothing first",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "cb12b7a3-2194-4073-9892-c5b974d784f2",
      "uuid": "b7a76a04-7e1d-4d24-a042-373c8cfaad3e",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "all or nothing second",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "ca4ee59a-1c38-4b6c-8726-e3c680d2fb56",
      "uuid": "ed90848f-91e1-4c2a-ac21-94e1e61d3615",
      "final": false,
      "index": 2,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "all or nothing third",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "test-ordered-grading-method-partial-credit": [
    {
      "tag": "b7834b30-e7e0-48be-9777-49569b38de2a",
      "uuid": "b268a675-a044-486d-ad36-cedfa8d2766c",
      "final": false,
      "index": 0,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "first",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "b7de63c9-fa59-4ed0-87a7-a6073c0b9882",
      "uuid": "f218f733-c606-4f5e-8a4b-7f8585fffcfc",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "second",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "c71464d1-02c1-4a43-9a3a-c3ee351cc605",
      "uuid": "d4fe3954-cd91-4452-9511-f0b39fd36258",
      "final": false,
      "index": 2,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "third",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ]
}
History
dec frac
rad deg