File tree Expand file tree Collapse file tree
interactive-activities/multi-choice-set Expand file tree Collapse file tree Original file line number Diff line number Diff 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
3457const quiz = document . getElementById ( "mc-quiz" ) ;
You can’t perform that action at this time.
0 commit comments