Skip to content

Commit 8dd3b97

Browse files
committed
update multiple choice question content
1 parent 513454c commit 8dd3b97

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
// Questions
22
const questions = [
33
{
4-
question: "Which of one of these items cannot be secured by IMS?",
4+
question:
5+
"Which IMS region type would you use to run an application that is written in Java?",
56
answers: [
6-
{ text: "Transactions", correct: false },
7-
{ text: "Commands", correct: false },
8-
{ text: "Data sets", correct: false },
9-
{ text: "Mobile applications", correct: true },
7+
{ text: "BMP", correct: false },
8+
{ text: "IFP", correct: false },
9+
{ text: "MPR", correct: false },
10+
{ text: "JBP", correct: true },
1011
],
1112
},
1213
{
1314
question:
14-
"Security levels can be affected by the following IMS elements? Select all that apply.",
15+
"Which of these items can you add to a DL/I call to filter which specific instance of a segment you want to find to perform functions against?",
1516
answers: [
16-
{ text: "The version of the application in use", correct: false },
17-
{ text: "IMS JCL overrides", correct: true },
18-
{ text: "RACF definitions", correct: true },
19-
{ text: "IMS command options", correct: true },
17+
{ text: "PCB", correct: false },
18+
{ text: "AIB", correct: false },
19+
{ text: "Segment search argument (SSA)", correct: true },
20+
{ text: "COUNT parameter", correct: true },
2021
],
2122
},
2223
{
23-
question:
24-
"Which of these security facilities are provided by the IMS product. Select all that apply.",
24+
question: "What is a dependent segment?",
2525
answers: [
26-
{ text: "SAF", correct: false },
27-
{ text: "Encryption", correct: false },
28-
{ text: "Parameters within the PSB generation", correct: true },
29-
{ text: "Installation exit routines", correct: true },
26+
{ text: "A root segment", correct: false },
27+
{ text: "Any segment that is not the root segment", correct: true },
28+
{ text: "A parent segment only", correct: false },
29+
{ text: "None of these", correct: false },
3030
],
3131
},
3232
];

0 commit comments

Comments
 (0)