Skip to content

Commit 1c66ce0

Browse files
committed
quiz activity questions
1 parent b89a668 commit 1c66ce0

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

interactive-activities/multi-choice-set/multi-choice-set.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,29 @@ const questions = [
2929
{ text: "None of these", correct: false },
3030
],
3131
},
32+
{
33+
question:
34+
"Data Language/One (DL/I) is a data management facility that serves as an interface between what two items?",
35+
answers: [
36+
{ text: "An application program and Java applications", correct: false },
37+
{ text: "An application program and an IMS database", correct: true },
38+
{ text: "An IMS database and the z/OS operating system", correct: false },
39+
{
40+
text: "An application program and IMS Transaction Manager",
41+
correct: false,
42+
},
43+
],
44+
},
45+
{
46+
question:
47+
"Which type of pointer allows a Fast Path DEDB to get direct access to the middle of long twin chain? ",
48+
answers: [
49+
{ text: "Hierarchical pointer", correct: false },
50+
{ text: "Physical child pointer", correct: false },
51+
{ text: "Logical parent pointer", correct: false },
52+
{ text: "Subset pointer", correct: true },
53+
],
54+
},
3255
];
3356

3457
const quiz = document.getElementById("mc-quiz");

0 commit comments

Comments
 (0)