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:
  • Assume $A \land B \land C$.
  • Since $A$ and $C$, we know $A \land C$
  • Then $C$ is true.
  • Then $A$ is true.
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:
  • 8
  • 10
  • 11
  • 9
  • 6
  • 7
  • 3
  • 2
  • 4
  • 1
  • 5
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:
  • We can see that $c = b\cdot q_2 = (a\cdot q_1)\cdot q_2 = a \cdot (q_1\cdot q_2).$
  • Assume that $a|b$ and $b|c.$
  • By definition $a|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.$
  • Let $a, b, c$ be arbitrary positive integers.
Construct your solution here:
Drag from here:
  • Some correct block before the distractor group
  • Distractor 1
  • Correct code
  • 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 before the distractor group
  • Some correct block between the distractor group
  • Some correct block after the distractor group
  • Distractor 1 for correct code 1
  • Distractor 1 for correct code 2
  • Correct code 1
  • Distractor 2 for correct code 2
  • Correct code 2
  • Distractor 2 for correct code 1
Construct your solution here:
Drag from here:
  • $2^n \gt 2(n-1)$ by IH
  • Assume $2^k \gt k$ for some integer $1 \leq k \lt n$
  • Let $n$ be an arbitrary integer.
  • $2^n = 2 \cdot 2^{n-1}$
  • Since $2(n-1) \gt 2n-n$, then $2^n \gt n$
  • $n=1: 2^1 \gt 1$
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
  • 4
  • 2
  • 3
  • 5
  • 6
  • 8
  • 7
  • 9
  • 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 2
  • Distractor 2 for correct code 1
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:38:24 (CDT)
Duration:
0s
Show/Hide answer
{
  "test1": [
    {
      "tag": "de2770d9-4606-4c56-bc7b-dc638c43e1d3",
      "uuid": "dd283c4c-b83c-41c6-a9ea-edd17b6f9be9",
      "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": "fcf50085-7ce2-4594-953f-23704cb4ba20",
      "uuid": "a127fbd5-2f1d-4b9e-8709-3de07a1065c9",
      "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": "a44a1a5d-9026-4647-adbb-0e3d5cb370a9",
      "uuid": "a3091914-d74c-4aef-ad7b-b785d1f609e1",
      "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": "dd56f8be-3546-48f9-8d69-3b5f53ec191b",
      "uuid": "fc841d53-3235-49f1-8ab1-9bac83611287",
      "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": "d09bed69-177b-447e-8548-effae0c77cb8",
      "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": "b263ae27-c6cc-4d02-b73d-c69821d3a170",
      "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": "ad8a2b8e-7e5d-4221-a04f-c18a59b2eb13",
      "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": "fea2edcc-9963-4a74-b75a-a314d845f9d4",
      "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": "d77300a8-ee0f-4026-a859-be78a342c47b",
      "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": "d158492f-4b81-4a8c-90c4-6e57d9a3bd70",
      "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": "bbe47aea-c1ee-42f1-b0bb-dbe4c4e85009",
      "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": "ef0e1948-0ef5-421a-92b0-fba3d7f63688",
      "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": "a1e9eeb5-3eab-4053-a06e-4d0a7492bef9",
      "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": "af437b2d-f31e-4bc4-8e8c-81ffd1c19164",
      "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": "b22adaa8-bf61-4899-a523-995649cdf61d",
      "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": "cae61fe1-a04b-4524-8aeb-712d78b17c57",
      "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": "db6fdc1f-9f10-4d37-bc9e-473169d85bb1",
      "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": "d0c21574-d4de-4931-8487-8d0c4d189403",
      "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": "a0c8d76a-51d3-48ad-8822-89fad76d8a17",
      "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": "c6c00e76-46eb-463f-84dc-825b2d2deb07",
      "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": "d0097c06-a421-4242-8721-e194e2ca8bd4",
      "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": "efd841de-72d1-4ec0-ab4b-a3471a23173e",
      "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": "e57bab05-99f8-450d-bc89-58ddbf1932b7",
      "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": "ce9cf8f6-0293-4bab-b5d4-0ec74dca6146",
      "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": "f53d9cda-59ff-4d84-8f47-b6ff5c9721cd",
      "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": "b873a699-1e59-4034-93a5-197fb51f1673",
      "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": "b17eeed5-e386-4a3c-a8cf-e760e4db2e60",
      "uuid": "f4c6c374-cb3a-4f80-a3d1-efef45418f70",
      "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": "c20de27a-953d-4b28-8889-90a2526fccde",
      "uuid": "fc939b62-199b-40ff-8bcc-a5b3455a491d",
      "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": "f9484330-77ed-460c-bb94-0fa1b226c809",
      "uuid": "c66bd382-69d5-4ee1-87d5-31265ae87daa",
      "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": "e7877e18-a6df-49b8-8b10-b0c3752fa475",
      "uuid": "a0a23a75-039f-4af6-8f6b-004c7f18e2ce",
      "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": "bfcd0420-4dc7-4dc9-acad-395ec176b8cc",
      "uuid": "eaebe26a-8823-4700-8374-e7c7e5a89c5f",
      "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": "e1b47ff3-8424-46cb-b4c5-8160a8c3890c",
      "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": "4",
      "uuid": "aa2fb735-036f-4867-a3cd-d40464c9943a",
      "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": "f6c2e3fe-31ef-48fc-89a8-369d0c9fd697",
      "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": "fa309816-d7b4-432a-b7fe-1fd85eb737bc",
      "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": "a10fbde9-d252-41f3-9462-0b8e443991a0",
      "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": "6",
      "uuid": "addbff7e-cf2f-4212-9ea6-21ce2d1a5ed2",
      "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": "de2d8dfa-129e-4c41-bd60-bead1f9178c5",
      "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": "b2b5ec81-47f0-4229-a8a3-50ba2aa48696",
      "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": "f5854e40-912d-4fc4-a933-354682fa5126",
      "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": "10",
      "uuid": "b6d59a82-cf9c-4e40-a4ce-b5996a73293f",
      "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": "cfcf97cd-88e9-453e-a07f-a7c72ee505db",
      "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": "a9782520-8def-4096-819b-40fc0e6908d9",
      "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": "d59c4ddd-f514-4e87-8848-28ba04852d1c",
      "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": "c2a3332e-7aaf-4742-98b5-c0cb9f85aa19",
      "uuid": "b0e68b18-54f3-4599-b9e8-eb390de890ae",
      "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": "a734aee1-5637-49a6-9d76-4784f0166ae0",
      "uuid": "f823ed9c-1d0a-41b1-afca-373b9c7deb22",
      "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": "d8f1e09c-a106-4522-9e8f-1fdac1f4483d",
      "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": "c8810431-35c4-4181-9d05-2304eebaa6da",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code",
      "distractor_bin": "bb8e9088-d30b-4677-b1b3-218db56072eb",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "randomize-distractors-when-ordered-2": [
    {
      "tag": "correct-block-no-distractors",
      "uuid": "b3cfc8d7-6b17-4c81-a38e-087fda889193",
      "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": "e3187f07-39e2-4960-bfec-2359346a3738",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code",
      "distractor_bin": "b6592ac7-d5c4-40d7-a7fc-3b8d9225de15",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    }
  ],
  "randomize-distractors-when-ordered-3": [
    {
      "tag": "correct-block-no-distractors",
      "uuid": "fd7002cb-ffed-4a5d-ae5a-3b3ebe69d285",
      "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": "d0f0b79f-b095-4b5b-a784-816be96a752a",
      "final": false,
      "index": 1,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code 1",
      "distractor_bin": "d125a1a7-54a7-4747-b403-d652ca4008c5",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "correct-block-no-distractors2",
      "uuid": "fbc668f0-1521-43fa-9c27-6cf74a813cc3",
      "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": "bc952c88-ecd9-4c1a-8828-7933a45e4e02",
      "final": false,
      "index": 5,
      "indent": null,
      "depends": [],
      "ranking": -1,
      "group_info": {
        "tag": null,
        "depends": null
      },
      "inner_html": "Correct code 2",
      "distractor_bin": "cf46c852-4c54-43f7-a3e7-99ba908f28fe",
      "distractor_for": null,
      "initially_placed": false,
      "ordering_feedback": null,
      "distractor_feedback": null
    },
    {
      "tag": "correct-block-no-distractors3",
      "uuid": "d953b27a-1144-4cf9-bcef-79512f4c2391",
      "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": "f91922c4-7364-4849-b0dd-af3ffcfff32f",
      "uuid": "b2ad2e1f-bf7a-449f-9eb7-e3bb3522806b",
      "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": "f9f4aaf6-7c1c-4726-b713-802c452ed67a",
      "uuid": "a99fa284-ebd7-4d1e-8f9b-bdaa1b8e79bf",
      "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": "aa0b2d71-a3fc-4fa0-8045-bdec1b814d93",
      "uuid": "e4624c7d-e479-456a-8941-a17184691c21",
      "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": "a7355eaa-d918-49ac-94e5-2586fa78f84f",
      "uuid": "e30e69fc-8974-4dc1-8f50-9dd10db99b29",
      "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": "f66c7095-bff2-4d05-964e-7c63f5acd482",
      "uuid": "dd899572-bbd8-4f5e-a99c-d5fbc202a5ec",
      "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": "cdc6c2ce-a91a-4fe8-900e-f5de3514b6eb",
      "uuid": "fe7723dc-21fc-4a2f-a668-839796a3be9d",
      "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