-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make questions by class from question bank json file
- Loading branch information
floriscalkoen
committed
Jan 18, 2024
1 parent
c3da726
commit 4174bbc
Showing
6 changed files
with
122 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"Q1-1": { | ||
"name": "Q1-1", | ||
"type": "multiple_choice", | ||
"question": "At what depth do earthquakes along divergent boundaries generally occur?", | ||
"options": { | ||
"a": "less than 33 km", | ||
"b": "between 33 km and 74 km", | ||
"c": "between 74 km and 140 km", | ||
"d": "more than 140 km " | ||
}, | ||
"answer": "a", | ||
"feedback": { | ||
"correct": "Correct, earthquakes at diverging boundaries typically occur at shallower depths", | ||
"incorrect": "Incorrect. Note that at diverging boundaries the tectonic plates move away from each other. Magma wells up to (relatively) shallow depths in order to fill the gap. This may cause earthquakes. Where are these earthquakes likeliest to occur?" | ||
} | ||
}, | ||
"Q1-2": { | ||
"name": "Q1-2", | ||
"type": "multiple_selection", | ||
"question": "Where do earthquakes with a depth > 250 km typically occur? Multiple answers may be correct.", | ||
"options": { | ||
"a": "wherever two oceanic plates converge", | ||
"b": "at a boundary between an oceanic and continental plate", | ||
"c": "at island arcs", | ||
"d": "wherever two oceanic plates diverge" | ||
}, | ||
"answers": [ | ||
"a", | ||
"c" | ||
], | ||
"feedback": { | ||
"correct": "Correct, indeed very deep earthquakes occur mostly when two ocaenic plates converge, or at an island arc.", | ||
"incorrect": "Incorrect. Deep earthquakes occur due to deep processes such as subduction. Due to subduction, island arcs may form (see Figure 2.9 in the book). Where does subduction typically occur?" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters