{ "q1": { "type": "blank", "question": "\n
A graph stores the ____ between pairs of objects. Like a\nlinked list or binary tree, a graph consists of nodes known\nas ____, which are connected to other nodes through links\nknown as ____. The number of links connected to a node is\ncalled the ____ of the object. A sequence of links between\ntwo nodes in a graph is called a ____.
\n" }, "q2": { "type": "order", "question": "\nMatch the graph terms below to the following descriptions:
\n\nReorder the following rows of an adjacency matrix to correspond\nto the graph below:
\n\n\n A B C D E\nA ? ? ? ? ?\nB ? ? ? ? ?\nC ? ? ? ? ?\nD ? ? ? ? ?\nE ? ? ? ? ?\n\n", "responses": { "a": "0 0 0 0 1", "b": "0 1 1 0 0", "c": "0 1 0 1 0", "d": "0 0 0 1 0", "e": "1 0 0 0 0" } }, "q4": { "type": "order", "question": "\n
Reorder the following lists of an adjacency list to correspond to\nthe graph below:
\n\n\nA: ?\nB: ?\nC: ?\nD: ?\nE: ?\n\n", "responses": { "a": "D", "b": "E", "c": "B, C", "d": "B, D", "e": "A" } } }