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.
  • Assume $A \land B \land C$.
  • Then $C$ is true.
  • Since $A$ and $C$, we know $A \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:
  • 9
  • 5
  • 11
  • 8
  • 2
  • 10
  • 6
  • 1
  • 7
  • 4
  • 3
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:
  • 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.$
  • Let $a, b, c$ be arbitrary positive integers.
  • 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
  • Correct code
  • Distractor 1
  • Distractor 2
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 after the distractor group
  • Some correct block before the distractor group
  • Correct code 1
  • Distractor 1 for correct code 1
  • Distractor 1 for correct code 2
  • Distractor 2 for correct code 1
  • Distractor 2 for correct code 2
  • Correct code 2
Construct your solution here:
Drag from here:
  • $2^n = 2 \cdot 2^{n-1}$
  • Assume $2^k \gt k$ for some integer $1 \leq k \lt n$
  • Since $2(n-1) \gt 2n-n$, then $2^n \gt n$
  • $2^n \gt 2(n-1)$ by IH
  • $n=1: 2^1 \gt 1$
  • Let $n$ be an arbitrary integer.
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 1
  • Distractor 1 for correct code 2
  • 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 21:53:30 (CDT)
Duration:
0s
Show/Hide answer
{
  "test1": [
    {
      "tag": "d4504541-73ef-402a-8ecd-34be8171576d",
      "uuid": "c6c382f5-e2d3-48ca-ab28-0f265ba2c833",
      "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": "f693a87c-5ca9-40a8-b182-a7d5ef45425d",
      "uuid": "bf95ead4-2fb4-4a74-b4fc-4a84196c3f0a",
      "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": "b683cc87-ebc9-4ede-899a-b9320db9598a",
      "uuid": "fe1f0d25-8209-432b-bafc-bfeb25f8072b",
      "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": "b5476127-9ff9-4b69-a73c-3f284114d891",
      "uuid": "bc08483a-09b3-4eeb-ad56-8ef5eaa19b5a",
      "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": "af5fb6af-b980-48d5-833b-0cad1a3f0b32",
      "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": "dbdecb2d-c1cd-4d28-8ad6-798153bfd94f",
      "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": "ddae37db-4841-407b-89e1-3e91b71ca23d",
      "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": "fcb064e4-20c0-493e-bd01-9a6f7079129a",
      "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": "c0b1b70d-f416-4253-bb39-9ad84184a21a",
      "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": "fdfdd210-3aef-420a-9fea-addc6bef8760",
      "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": "db29562f-2ce1-49e3-83d0-44de53ced4fd",
      "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": "fa23e492-1784-4c10-9320-5ccd306c3c0c",
      "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": "d752bbc3-3fa6-4aa9-ab71-423cf19f30a2",
      "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": "b7058256-6567-4dda-830b-7fdae8187a40",
      "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": "c0eeff52-2c03-4103-b75a-c77292bc1655",
      "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": "c0b84194-6d52-48ff-bd2e-5218ca3be28e",
      "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": "ed28d25d-6fec-4b4e-b358-4c8fc0cb7b51",
      "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": "c0e7f048-a876-4d3b-a946-3f5972e3451a",
      "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": "e71d4bc4-9106-4d46-9d55-be17e4f1cb78",
      "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": "e5ce383b-f9ba-4821-b16b-996f9ed76d90",
      "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": "b1e83a0d-b7b7-49c2-af68-06340b882dbe",
      "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": "befe049b-fdea-4703-88fd-c7cf37c40f9c",
      "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": "a2eae89a-f5e0-4f43-bdbe-5ca990e57e07",
      "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": "f6f5b28d-26de-4f02-883d-db534f5aac6a",
      "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": "ee750efa-2806-45d5-b2ac-88d321ae757f",
      "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": "e370c0b8-07e5-4e9c-bb72-b46d49183600",
      "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": "cdb69673-7a58-4de5-b821-b455a6e40d8d",
      "uuid": "e78b406a-3c90-4f59-8024-645042148131",
      "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": "f3e69245-775a-4d47-b9c9-24e0f9427e4f",
      "uuid": "b57659a7-b46b-4c42-b548-d2a821adccdc",
      "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": "db8b80e0-7eda-4fa7-acc3-e2c883fb8ed4",
      "uuid": "ee84bce1-9794-41ca-8a66-95eadb3ce0c0",
      "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": "bcef544b-4e0a-4c8a-b1a8-9892ea007384",
      "uuid": "d77298d0-fcb3-479e-b0a7-2313c9407052",
      "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": "f3c92cc1-cd4a-4b46-9580-58c18e905933",
      "uuid": "e8769aa2-664d-4bde-bc15-645576a24115",
      "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": "f68a1877-d5e4-4d96-a864-49e2108c236c",
      "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": "e6b2f22f-d682-4578-99c7-c8017dc83ca5",
      "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": "f37e3052-3287-4282-ac61-aedf42718cb0",
      "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": "b444a16e-17b0-4d0c-9841-e09a8b178207",
      "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": "f73862a9-71ac-4338-b99e-6296b2aeb232",
      "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": "c7ba6901-369f-45d7-8dc7-cdfb8082ed23",
      "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": "ffd13258-4080-4098-b1c7-e66568af2cce",
      "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": "f08962ae-4794-4ec6-a4d7-26ef13b05b6f",
      "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": "f1158daf-cd22-480f-beeb-165c43b50fbb",
      "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": "aba66a49-b179-4ef6-a406-4e6222fd9156",
      "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": "be1180d3-bcfe-444c-8e1a-e51350281194",
      "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": "fd6c699d-b5d7-405a-96bc-fdc35732837a",
      "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": "d5e70f85-3d32-49dc-ab61-41e8c7198672",
      "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": "d329ed41-c0d5-4deb-b457-04c32103c9f2",
      "uuid": "a07c3562-20e1-4678-8a96-37b7e474fb97",
      "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": "a803660e-cf64-4ff2-8184-b8c432eddad0",
      "uuid": "d14a3813-d68a-474e-8cd3-dffc593426b2",
      "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": "b3d0e00d-b6e2-4877-9767-0afd70431692",
      "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": "f75bbbb0-acec-4bef-a2ce-2e597da0c45a",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code",
      "distractor_bin": "fa9678f8-792b-4c0b-b906-050fdff60d23",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "randomize-distractors-when-ordered-2": [
    {
      "tag": "correct-block-no-distractors",
      "uuid": "c09c418c-2768-4271-b04f-9310dce151e8",
      "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": "dd66299d-7751-4a3f-b411-d77064ccf73b",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code",
      "distractor_bin": "a6ef3614-d313-406d-a3ac-89eeb793c38f",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "randomize-distractors-when-ordered-3": [
    {
      "tag": "correct-block-no-distractors",
      "uuid": "aca61ac7-f4b8-406f-938e-baae9fd21295",
      "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": "f49874a0-ce0b-4dca-9edc-07fed43f2e65",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code 1",
      "distractor_bin": "c7841123-e03b-4d02-b646-e0cf5a919f3d",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "correct-block-no-distractors2",
      "uuid": "e270e18c-a488-44e0-a6f9-4956cdaa6496",
      "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": "d1bcc8d1-6a01-47b8-87ce-7d6a063bb399",
      "final": false,
      "index": 5,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code 2",
      "distractor_bin": "cca4325a-d7cf-4dda-971e-8923e14df30e",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "correct-block-no-distractors3",
      "uuid": "a1d9f12b-8d59-44dd-9566-e993db6fd806",
      "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": "e6c75cdc-edde-406c-a651-a46fbffde462",
      "uuid": "c46b740d-b074-42dc-a7f1-b9b2f217feab",
      "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": "dad1e591-cc07-4722-b9e2-c35a5aeaaf06",
      "uuid": "eed3e835-96e3-4ebc-b0bf-5b177e0076c9",
      "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": "f59cbe40-8ce7-49ba-a21f-77fecda76b41",
      "uuid": "e2f643f7-8ca8-4b28-81fd-71c5698b015a",
      "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": "ce64f8a1-bdb5-46f4-9f6e-239136a8c63f",
      "uuid": "ec800eae-18b4-47af-a0dc-950b9543f77f",
      "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": "c6e07b30-59fe-425e-958a-e7c64ceee8eb",
      "uuid": "c9d20e55-71e1-4eb1-ab8c-314f1388c41e",
      "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": "d8ff24fb-92fb-4d18-b3d1-4b2d84877e78",
      "uuid": "af7c8520-a50e-46f0-b882-5dcbc72e449c",
      "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