qti 0.9.17 → 0.9.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/qti/models/assessment_meta.rb +4 -0
- data/lib/qti/models/manifest.rb +22 -5
- data/lib/qti/version.rb +1 -1
- data/spec/fixtures/canvas_cartridge/course_settings/assignment_groups.xml +13 -0
- data/spec/fixtures/canvas_cartridge/course_settings/canvas_export.txt +2 -0
- data/spec/fixtures/canvas_cartridge/course_settings/course_settings.xml +17 -0
- data/spec/fixtures/canvas_cartridge/course_settings/files_meta.xml +3 -0
- data/spec/fixtures/canvas_cartridge/course_settings/media_tracks.xml +3 -0
- data/spec/fixtures/canvas_cartridge/ib5281f3537a06f58877107a2501a4e2d/assessment_meta.xml +59 -0
- data/spec/fixtures/canvas_cartridge/ib5281f3537a06f58877107a2501a4e2d/assessment_qti.xml +585 -0
- data/spec/fixtures/canvas_cartridge/imsmanifest.xml +55 -0
- data/spec/fixtures/canvas_cartridge/non_cc_assessments/i2ae4df242d342169dae37f9f08dfc5a6.xml.qti +1323 -0
- data/spec/fixtures/canvas_cartridge/non_cc_assessments/ib5281f3537a06f58877107a2501a4e2d.xml.qti +1373 -0
- data/spec/lib/qti/models/manifest_spec.rb +7 -0
- metadata +22 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f98b966174234c785257c789cdd6130cc59abb20
|
|
4
|
+
data.tar.gz: 58464a2cbc399e5c63e6d5209165fed1da5c7e81
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bcad0a6d3725624c35e51ed164c347505870f49340eefdb020b0b3769211ac5f74efc6efef046d7336376c47cb8b3c9d4fd152c6a5a0c162a6fe7b625652feb9
|
|
7
|
+
data.tar.gz: d5713beb9bdb67e3bb00c0b875db8b9011a9eb964b703861023b5812edffa11fdebc37c6baa6444193530bf59de999f1eaa253b2501419e635a277262f0b9f56
|
data/lib/qti/models/manifest.rb
CHANGED
|
@@ -58,12 +58,25 @@ module Qti
|
|
|
58
58
|
def assessment_from(version, identifier)
|
|
59
59
|
builder = ASSESSMENT_CLASSES[version.split('/').first]
|
|
60
60
|
raise_unsupported unless builder
|
|
61
|
-
|
|
61
|
+
canvas_meta = canvas_meta_data_for(identifier)
|
|
62
|
+
assessment = builder.from_path!(
|
|
63
|
+
remap_href_path(asset_resource_for(identifier, version, canvas_meta&.quiz_identifier)),
|
|
64
|
+
@package_root
|
|
65
|
+
)
|
|
62
66
|
assessment.canvas_meta_data(canvas_meta_data_for(identifier))
|
|
63
67
|
assessment
|
|
64
68
|
end
|
|
65
69
|
|
|
66
|
-
def asset_resource_for(identifier, qti_type)
|
|
70
|
+
def asset_resource_for(identifier, qti_type, canvas_ident)
|
|
71
|
+
asset_resource_for_canvas(canvas_ident) || asset_resource_for_ims(identifier, qti_type)
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
def asset_resource_for_canvas(identifier)
|
|
75
|
+
canvas_extra_file(identifier, '.xml.qti')
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
def asset_resource_for_ims(identifier, qti_type)
|
|
67
80
|
base_xpath = "[@identifier='#{identifier}' and starts-with(@type, '#{qti_type}')]"
|
|
68
81
|
xmlns_resource(base_xpath + '/@href') || xmlns_resource(base_xpath + '/xmlns:file/@href')
|
|
69
82
|
end
|
|
@@ -73,11 +86,15 @@ module Qti
|
|
|
73
86
|
end
|
|
74
87
|
|
|
75
88
|
def canvas_meta_data_for(identifier)
|
|
89
|
+
meta_file = canvas_extra_file(identifier, 'assessment_meta.xml')
|
|
90
|
+
return Qti::Models::AssessmentMeta.from_path!(File.join(@package_root, meta_file)) if meta_file
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
def canvas_extra_file(identifier, filename)
|
|
76
94
|
dep_id = dependency_id(identifier)
|
|
77
|
-
|
|
78
|
-
"[@identifier='#{dep_id}']/xmlns:file[#{xpath_endswith('@href',
|
|
95
|
+
xmlns_resource(
|
|
96
|
+
"[@identifier='#{dep_id}']/xmlns:file[#{xpath_endswith('@href', filename)}]/@href"
|
|
79
97
|
)
|
|
80
|
-
return Qti::Models::AssessmentMeta.from_path!(File.join(@package_root, meta_file)) if meta_file
|
|
81
98
|
end
|
|
82
99
|
|
|
83
100
|
def xmlns_resource(type)
|
data/lib/qti/version.rb
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<assignmentGroups xmlns="http://canvas.instructure.com/xsd/cccv1p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://canvas.instructure.com/xsd/cccv1p0 https://canvas.instructure.com/xsd/cccv1p0.xsd">
|
|
3
|
+
<assignmentGroup identifier="i8331b7d78accc92dce37f4339f1b1e85">
|
|
4
|
+
<title>Assignments</title>
|
|
5
|
+
<position>1</position>
|
|
6
|
+
<group_weight>0.0</group_weight>
|
|
7
|
+
</assignmentGroup>
|
|
8
|
+
<assignmentGroup identifier="ibe18b28f6f6c3afbb22ec9058dd6812a">
|
|
9
|
+
<title>Imported Assignments</title>
|
|
10
|
+
<position>2</position>
|
|
11
|
+
<group_weight>0.0</group_weight>
|
|
12
|
+
</assignmentGroup>
|
|
13
|
+
</assignmentGroups>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<course identifier="id542f3757649f8a5422311abd0a56d55" xmlns="http://canvas.instructure.com/xsd/cccv1p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://canvas.instructure.com/xsd/cccv1p0 https://canvas.instructure.com/xsd/cccv1p0.xsd">
|
|
3
|
+
<title>Canvas Cartridge</title>
|
|
4
|
+
<course_code>Canvas</course_code>
|
|
5
|
+
<is_public>false</is_public>
|
|
6
|
+
<allow_student_wiki_edits>false</allow_student_wiki_edits>
|
|
7
|
+
<allow_student_forum_attachments>false</allow_student_forum_attachments>
|
|
8
|
+
<lock_all_announcements>false</lock_all_announcements>
|
|
9
|
+
<allow_student_organized_groups>true</allow_student_organized_groups>
|
|
10
|
+
<default_view>modules</default_view>
|
|
11
|
+
<license>private</license>
|
|
12
|
+
<restrict_student_future_view>false</restrict_student_future_view>
|
|
13
|
+
<restrict_student_past_view>false</restrict_student_past_view>
|
|
14
|
+
<grading_standard_enabled>false</grading_standard_enabled>
|
|
15
|
+
<storage_quota>524288000</storage_quota>
|
|
16
|
+
<root_account_uuid>oN8zZuqCngDa6Q2w0MbHXROBzpheymhUj9kx9vm1</root_account_uuid>
|
|
17
|
+
</course>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<fileMeta xmlns="http://canvas.instructure.com/xsd/cccv1p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://canvas.instructure.com/xsd/cccv1p0 https://canvas.instructure.com/xsd/cccv1p0.xsd">
|
|
3
|
+
</fileMeta>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<media_tracks xmlns="http://canvas.instructure.com/xsd/cccv1p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://canvas.instructure.com/xsd/cccv1p0 https://canvas.instructure.com/xsd/cccv1p0.xsd">
|
|
3
|
+
</media_tracks>
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<quiz identifier="ib5281f3537a06f58877107a2501a4e2d" xmlns="http://canvas.instructure.com/xsd/cccv1p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://canvas.instructure.com/xsd/cccv1p0 https://canvas.instructure.com/xsd/cccv1p0.xsd">
|
|
3
|
+
<title>Every Canvas Interaction</title>
|
|
4
|
+
<description><p>This quiz contains a simple example of every canvas interaction type.</p></description>
|
|
5
|
+
<shuffle_answers>false</shuffle_answers>
|
|
6
|
+
<scoring_policy>keep_highest</scoring_policy>
|
|
7
|
+
<hide_results></hide_results>
|
|
8
|
+
<quiz_type>assignment</quiz_type>
|
|
9
|
+
<points_possible>11.0</points_possible>
|
|
10
|
+
<require_lockdown_browser>false</require_lockdown_browser>
|
|
11
|
+
<require_lockdown_browser_for_results>false</require_lockdown_browser_for_results>
|
|
12
|
+
<require_lockdown_browser_monitor>false</require_lockdown_browser_monitor>
|
|
13
|
+
<lockdown_browser_monitor_data></lockdown_browser_monitor_data>
|
|
14
|
+
<show_correct_answers>true</show_correct_answers>
|
|
15
|
+
<anonymous_submissions>false</anonymous_submissions>
|
|
16
|
+
<could_be_locked>false</could_be_locked>
|
|
17
|
+
<allowed_attempts>1</allowed_attempts>
|
|
18
|
+
<one_question_at_a_time>false</one_question_at_a_time>
|
|
19
|
+
<cant_go_back>false</cant_go_back>
|
|
20
|
+
<available>true</available>
|
|
21
|
+
<one_time_results>false</one_time_results>
|
|
22
|
+
<show_correct_answers_last_attempt>false</show_correct_answers_last_attempt>
|
|
23
|
+
<only_visible_to_overrides>false</only_visible_to_overrides>
|
|
24
|
+
<module_locked>false</module_locked>
|
|
25
|
+
<assignment identifier="ibe3c9fa638cb02564eb43eed119bfb20">
|
|
26
|
+
<title>Every Canvas Interaction</title>
|
|
27
|
+
<due_at/>
|
|
28
|
+
<lock_at/>
|
|
29
|
+
<unlock_at/>
|
|
30
|
+
<module_locked>false</module_locked>
|
|
31
|
+
<assignment_group_identifierref>ibe18b28f6f6c3afbb22ec9058dd6812a</assignment_group_identifierref>
|
|
32
|
+
<workflow_state>published</workflow_state>
|
|
33
|
+
<assignment_overrides>
|
|
34
|
+
</assignment_overrides>
|
|
35
|
+
<quiz_identifierref>ib5281f3537a06f58877107a2501a4e2d</quiz_identifierref>
|
|
36
|
+
<has_group_category>false</has_group_category>
|
|
37
|
+
<points_possible>11.0</points_possible>
|
|
38
|
+
<grading_type>points</grading_type>
|
|
39
|
+
<all_day>false</all_day>
|
|
40
|
+
<submission_types>online_quiz</submission_types>
|
|
41
|
+
<position>11</position>
|
|
42
|
+
<turnitin_enabled>false</turnitin_enabled>
|
|
43
|
+
<vericite_enabled>false</vericite_enabled>
|
|
44
|
+
<peer_review_count>0</peer_review_count>
|
|
45
|
+
<peer_reviews>false</peer_reviews>
|
|
46
|
+
<automatic_peer_reviews>false</automatic_peer_reviews>
|
|
47
|
+
<moderated_grading>false</moderated_grading>
|
|
48
|
+
<anonymous_peer_reviews>false</anonymous_peer_reviews>
|
|
49
|
+
<grade_group_students_individually>false</grade_group_students_individually>
|
|
50
|
+
<freeze_on_copy>false</freeze_on_copy>
|
|
51
|
+
<omit_from_final_grade>false</omit_from_final_grade>
|
|
52
|
+
<intra_group_peer_reviews>false</intra_group_peer_reviews>
|
|
53
|
+
<only_visible_to_overrides>false</only_visible_to_overrides>
|
|
54
|
+
<post_to_sis>false</post_to_sis>
|
|
55
|
+
</assignment>
|
|
56
|
+
<assignment_group_identifierref>ibe18b28f6f6c3afbb22ec9058dd6812a</assignment_group_identifierref>
|
|
57
|
+
<assignment_overrides>
|
|
58
|
+
</assignment_overrides>
|
|
59
|
+
</quiz>
|
|
@@ -0,0 +1,585 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<questestinterop xmlns="http://www.imsglobal.org/xsd/ims_qtiasiv1p2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.imsglobal.org/xsd/ims_qtiasiv1p2 http://www.imsglobal.org/profile/cc/ccv1p1/ccv1p1_qtiasiv1p2p1_v1p0.xsd">
|
|
3
|
+
<assessment ident="ib5281f3537a06f58877107a2501a4e2d" title="Every Canvas Interaction">
|
|
4
|
+
<qtimetadata>
|
|
5
|
+
<qtimetadatafield>
|
|
6
|
+
<fieldlabel>cc_profile</fieldlabel>
|
|
7
|
+
<fieldentry>cc.exam.v0p1</fieldentry>
|
|
8
|
+
</qtimetadatafield>
|
|
9
|
+
<qtimetadatafield>
|
|
10
|
+
<fieldlabel>qmd_assessmenttype</fieldlabel>
|
|
11
|
+
<fieldentry>Examination</fieldentry>
|
|
12
|
+
</qtimetadatafield>
|
|
13
|
+
<qtimetadatafield>
|
|
14
|
+
<fieldlabel>qmd_scoretype</fieldlabel>
|
|
15
|
+
<fieldentry>Percentage</fieldentry>
|
|
16
|
+
</qtimetadatafield>
|
|
17
|
+
<qtimetadatafield>
|
|
18
|
+
<fieldlabel>cc_maxattempts</fieldlabel>
|
|
19
|
+
<fieldentry>1</fieldentry>
|
|
20
|
+
</qtimetadatafield>
|
|
21
|
+
</qtimetadata>
|
|
22
|
+
<section ident="root_section">
|
|
23
|
+
<item ident="ia89113f89c899deca37259f6d17ee352" title="Question 1">
|
|
24
|
+
<itemmetadata>
|
|
25
|
+
<qtimetadata>
|
|
26
|
+
<qtimetadatafield>
|
|
27
|
+
<fieldlabel>cc_profile</fieldlabel>
|
|
28
|
+
<fieldentry>cc.multiple_choice.v0p1</fieldentry>
|
|
29
|
+
</qtimetadatafield>
|
|
30
|
+
</qtimetadata>
|
|
31
|
+
</itemmetadata>
|
|
32
|
+
<presentation>
|
|
33
|
+
<material>
|
|
34
|
+
<mattext texttype="text/html"><div>Question 1, Multiple Choice, Answer is C</div></mattext>
|
|
35
|
+
</material>
|
|
36
|
+
<response_lid ident="response1" rcardinality="Single">
|
|
37
|
+
<render_choice>
|
|
38
|
+
<response_label ident="8459">
|
|
39
|
+
<material>
|
|
40
|
+
<mattext texttype="text/plain">C</mattext>
|
|
41
|
+
</material>
|
|
42
|
+
</response_label>
|
|
43
|
+
<response_label ident="59841">
|
|
44
|
+
<material>
|
|
45
|
+
<mattext texttype="text/plain">A</mattext>
|
|
46
|
+
</material>
|
|
47
|
+
</response_label>
|
|
48
|
+
<response_label ident="53121">
|
|
49
|
+
<material>
|
|
50
|
+
<mattext texttype="text/plain">B</mattext>
|
|
51
|
+
</material>
|
|
52
|
+
</response_label>
|
|
53
|
+
<response_label ident="78484">
|
|
54
|
+
<material>
|
|
55
|
+
<mattext texttype="text/plain">D</mattext>
|
|
56
|
+
</material>
|
|
57
|
+
</response_label>
|
|
58
|
+
</render_choice>
|
|
59
|
+
</response_lid>
|
|
60
|
+
</presentation>
|
|
61
|
+
<resprocessing>
|
|
62
|
+
<outcomes>
|
|
63
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
|
64
|
+
</outcomes>
|
|
65
|
+
<respcondition continue="Yes">
|
|
66
|
+
<conditionvar>
|
|
67
|
+
<other/>
|
|
68
|
+
</conditionvar>
|
|
69
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
|
70
|
+
</respcondition>
|
|
71
|
+
<respcondition continue="Yes">
|
|
72
|
+
<conditionvar>
|
|
73
|
+
<varequal respident="response1">8459</varequal>
|
|
74
|
+
</conditionvar>
|
|
75
|
+
<displayfeedback feedbacktype="Response" linkrefid="8459_fb"/>
|
|
76
|
+
</respcondition>
|
|
77
|
+
<respcondition continue="Yes">
|
|
78
|
+
<conditionvar>
|
|
79
|
+
<varequal respident="response1">59841</varequal>
|
|
80
|
+
</conditionvar>
|
|
81
|
+
<displayfeedback feedbacktype="Response" linkrefid="59841_fb"/>
|
|
82
|
+
</respcondition>
|
|
83
|
+
<respcondition continue="Yes">
|
|
84
|
+
<conditionvar>
|
|
85
|
+
<varequal respident="response1">53121</varequal>
|
|
86
|
+
</conditionvar>
|
|
87
|
+
<displayfeedback feedbacktype="Response" linkrefid="53121_fb"/>
|
|
88
|
+
</respcondition>
|
|
89
|
+
<respcondition continue="Yes">
|
|
90
|
+
<conditionvar>
|
|
91
|
+
<varequal respident="response1">78484</varequal>
|
|
92
|
+
</conditionvar>
|
|
93
|
+
<displayfeedback feedbacktype="Response" linkrefid="78484_fb"/>
|
|
94
|
+
</respcondition>
|
|
95
|
+
<respcondition continue="No">
|
|
96
|
+
<conditionvar>
|
|
97
|
+
<varequal respident="response1">8459</varequal>
|
|
98
|
+
</conditionvar>
|
|
99
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
|
100
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
|
101
|
+
</respcondition>
|
|
102
|
+
<respcondition continue="Yes">
|
|
103
|
+
<conditionvar>
|
|
104
|
+
<other/>
|
|
105
|
+
</conditionvar>
|
|
106
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_incorrect_fb"/>
|
|
107
|
+
</respcondition>
|
|
108
|
+
</resprocessing>
|
|
109
|
+
<itemfeedback ident="general_fb">
|
|
110
|
+
<flow_mat>
|
|
111
|
+
<material>
|
|
112
|
+
<mattext texttype="text/plain">Item Feedback, Neutral</mattext>
|
|
113
|
+
</material>
|
|
114
|
+
</flow_mat>
|
|
115
|
+
</itemfeedback>
|
|
116
|
+
<itemfeedback ident="correct_fb">
|
|
117
|
+
<flow_mat>
|
|
118
|
+
<material>
|
|
119
|
+
<mattext texttype="text/plain">Item Feedback, Correct</mattext>
|
|
120
|
+
</material>
|
|
121
|
+
</flow_mat>
|
|
122
|
+
</itemfeedback>
|
|
123
|
+
<itemfeedback ident="general_incorrect_fb">
|
|
124
|
+
<flow_mat>
|
|
125
|
+
<material>
|
|
126
|
+
<mattext texttype="text/plain">Item Feedback, Incorrect</mattext>
|
|
127
|
+
</material>
|
|
128
|
+
</flow_mat>
|
|
129
|
+
</itemfeedback>
|
|
130
|
+
<itemfeedback ident="8459_fb">
|
|
131
|
+
<flow_mat>
|
|
132
|
+
<material>
|
|
133
|
+
<mattext texttype="text/plain">Answer feedback for C, correct</mattext>
|
|
134
|
+
</material>
|
|
135
|
+
</flow_mat>
|
|
136
|
+
</itemfeedback>
|
|
137
|
+
<itemfeedback ident="59841_fb">
|
|
138
|
+
<flow_mat>
|
|
139
|
+
<material>
|
|
140
|
+
<mattext texttype="text/plain">Answer feedback for A, incorrect</mattext>
|
|
141
|
+
</material>
|
|
142
|
+
</flow_mat>
|
|
143
|
+
</itemfeedback>
|
|
144
|
+
<itemfeedback ident="53121_fb">
|
|
145
|
+
<flow_mat>
|
|
146
|
+
<material>
|
|
147
|
+
<mattext texttype="text/plain">Answer feedback for B, incorrect</mattext>
|
|
148
|
+
</material>
|
|
149
|
+
</flow_mat>
|
|
150
|
+
</itemfeedback>
|
|
151
|
+
<itemfeedback ident="78484_fb">
|
|
152
|
+
<flow_mat>
|
|
153
|
+
<material>
|
|
154
|
+
<mattext texttype="text/plain">Answer feedback for D, incorrect</mattext>
|
|
155
|
+
</material>
|
|
156
|
+
</flow_mat>
|
|
157
|
+
</itemfeedback>
|
|
158
|
+
</item>
|
|
159
|
+
<item ident="ic0c91dbbd2dcd3770e6b32e3e54d99a4" title="Question 2">
|
|
160
|
+
<itemmetadata>
|
|
161
|
+
<qtimetadata>
|
|
162
|
+
<qtimetadatafield>
|
|
163
|
+
<fieldlabel>cc_profile</fieldlabel>
|
|
164
|
+
<fieldentry>cc.true_false.v0p1</fieldentry>
|
|
165
|
+
</qtimetadatafield>
|
|
166
|
+
</qtimetadata>
|
|
167
|
+
</itemmetadata>
|
|
168
|
+
<presentation>
|
|
169
|
+
<material>
|
|
170
|
+
<mattext texttype="text/html"><div>Question 2, True/False, Answer is True</div></mattext>
|
|
171
|
+
</material>
|
|
172
|
+
<response_lid ident="response1" rcardinality="Single">
|
|
173
|
+
<render_choice>
|
|
174
|
+
<response_label ident="30250">
|
|
175
|
+
<material>
|
|
176
|
+
<mattext texttype="text/plain">True</mattext>
|
|
177
|
+
</material>
|
|
178
|
+
</response_label>
|
|
179
|
+
<response_label ident="71427">
|
|
180
|
+
<material>
|
|
181
|
+
<mattext texttype="text/plain">False</mattext>
|
|
182
|
+
</material>
|
|
183
|
+
</response_label>
|
|
184
|
+
</render_choice>
|
|
185
|
+
</response_lid>
|
|
186
|
+
</presentation>
|
|
187
|
+
<resprocessing>
|
|
188
|
+
<outcomes>
|
|
189
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
|
190
|
+
</outcomes>
|
|
191
|
+
<respcondition continue="Yes">
|
|
192
|
+
<conditionvar>
|
|
193
|
+
<other/>
|
|
194
|
+
</conditionvar>
|
|
195
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
|
196
|
+
</respcondition>
|
|
197
|
+
<respcondition continue="Yes">
|
|
198
|
+
<conditionvar>
|
|
199
|
+
<varequal respident="response1">30250</varequal>
|
|
200
|
+
</conditionvar>
|
|
201
|
+
<displayfeedback feedbacktype="Response" linkrefid="30250_fb"/>
|
|
202
|
+
</respcondition>
|
|
203
|
+
<respcondition continue="Yes">
|
|
204
|
+
<conditionvar>
|
|
205
|
+
<varequal respident="response1">71427</varequal>
|
|
206
|
+
</conditionvar>
|
|
207
|
+
<displayfeedback feedbacktype="Response" linkrefid="71427_fb"/>
|
|
208
|
+
</respcondition>
|
|
209
|
+
<respcondition continue="No">
|
|
210
|
+
<conditionvar>
|
|
211
|
+
<varequal respident="response1">30250</varequal>
|
|
212
|
+
</conditionvar>
|
|
213
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
|
214
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
|
215
|
+
</respcondition>
|
|
216
|
+
<respcondition continue="Yes">
|
|
217
|
+
<conditionvar>
|
|
218
|
+
<other/>
|
|
219
|
+
</conditionvar>
|
|
220
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_incorrect_fb"/>
|
|
221
|
+
</respcondition>
|
|
222
|
+
</resprocessing>
|
|
223
|
+
<itemfeedback ident="general_fb">
|
|
224
|
+
<flow_mat>
|
|
225
|
+
<material>
|
|
226
|
+
<mattext texttype="text/plain">Item Feedback, Neutral</mattext>
|
|
227
|
+
</material>
|
|
228
|
+
</flow_mat>
|
|
229
|
+
</itemfeedback>
|
|
230
|
+
<itemfeedback ident="correct_fb">
|
|
231
|
+
<flow_mat>
|
|
232
|
+
<material>
|
|
233
|
+
<mattext texttype="text/plain">Item Feedback, Correct</mattext>
|
|
234
|
+
</material>
|
|
235
|
+
</flow_mat>
|
|
236
|
+
</itemfeedback>
|
|
237
|
+
<itemfeedback ident="general_incorrect_fb">
|
|
238
|
+
<flow_mat>
|
|
239
|
+
<material>
|
|
240
|
+
<mattext texttype="text/plain">Item Feedback, Incorrect</mattext>
|
|
241
|
+
</material>
|
|
242
|
+
</flow_mat>
|
|
243
|
+
</itemfeedback>
|
|
244
|
+
<itemfeedback ident="30250_fb">
|
|
245
|
+
<flow_mat>
|
|
246
|
+
<material>
|
|
247
|
+
<mattext texttype="text/plain">Answer Feedback, True, Correct</mattext>
|
|
248
|
+
</material>
|
|
249
|
+
</flow_mat>
|
|
250
|
+
</itemfeedback>
|
|
251
|
+
<itemfeedback ident="71427_fb">
|
|
252
|
+
<flow_mat>
|
|
253
|
+
<material>
|
|
254
|
+
<mattext texttype="text/plain">Answer Feedback, False, Incorrect</mattext>
|
|
255
|
+
</material>
|
|
256
|
+
</flow_mat>
|
|
257
|
+
</itemfeedback>
|
|
258
|
+
</item>
|
|
259
|
+
<item ident="iffc71167f9a32b094999c1d63972597f" title="Question 3">
|
|
260
|
+
<itemmetadata>
|
|
261
|
+
<qtimetadata>
|
|
262
|
+
<qtimetadatafield>
|
|
263
|
+
<fieldlabel>cc_profile</fieldlabel>
|
|
264
|
+
<fieldentry>cc.fib.v0p1</fieldentry>
|
|
265
|
+
</qtimetadatafield>
|
|
266
|
+
</qtimetadata>
|
|
267
|
+
</itemmetadata>
|
|
268
|
+
<presentation>
|
|
269
|
+
<material>
|
|
270
|
+
<mattext texttype="text/html"><div>Question 3, Fill in the</div></mattext>
|
|
271
|
+
</material>
|
|
272
|
+
<response_str ident="response1" rcardinality="Single">
|
|
273
|
+
<render_fib>
|
|
274
|
+
<response_label ident="answer1" rshuffle="No"/>
|
|
275
|
+
</render_fib>
|
|
276
|
+
</response_str>
|
|
277
|
+
</presentation>
|
|
278
|
+
<resprocessing>
|
|
279
|
+
<outcomes>
|
|
280
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
|
281
|
+
</outcomes>
|
|
282
|
+
<respcondition continue="Yes">
|
|
283
|
+
<conditionvar>
|
|
284
|
+
<other/>
|
|
285
|
+
</conditionvar>
|
|
286
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
|
287
|
+
</respcondition>
|
|
288
|
+
<respcondition continue="Yes">
|
|
289
|
+
<conditionvar>
|
|
290
|
+
<varequal respident="response1">Blank</varequal>
|
|
291
|
+
</conditionvar>
|
|
292
|
+
<displayfeedback feedbacktype="Response" linkrefid="67059_fb"/>
|
|
293
|
+
</respcondition>
|
|
294
|
+
<respcondition continue="Yes">
|
|
295
|
+
<conditionvar>
|
|
296
|
+
<varequal respident="response1">blank</varequal>
|
|
297
|
+
</conditionvar>
|
|
298
|
+
<displayfeedback feedbacktype="Response" linkrefid="94970_fb"/>
|
|
299
|
+
</respcondition>
|
|
300
|
+
<respcondition continue="No">
|
|
301
|
+
<conditionvar>
|
|
302
|
+
<varequal respident="response1">Blank</varequal>
|
|
303
|
+
<varequal respident="response1">blank</varequal>
|
|
304
|
+
</conditionvar>
|
|
305
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
|
306
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
|
307
|
+
</respcondition>
|
|
308
|
+
<respcondition continue="Yes">
|
|
309
|
+
<conditionvar>
|
|
310
|
+
<other/>
|
|
311
|
+
</conditionvar>
|
|
312
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_incorrect_fb"/>
|
|
313
|
+
</respcondition>
|
|
314
|
+
</resprocessing>
|
|
315
|
+
<itemfeedback ident="general_fb">
|
|
316
|
+
<flow_mat>
|
|
317
|
+
<material>
|
|
318
|
+
<mattext texttype="text/plain">Item Feedback. Neutral</mattext>
|
|
319
|
+
</material>
|
|
320
|
+
</flow_mat>
|
|
321
|
+
</itemfeedback>
|
|
322
|
+
<itemfeedback ident="correct_fb">
|
|
323
|
+
<flow_mat>
|
|
324
|
+
<material>
|
|
325
|
+
<mattext texttype="text/plain">Item Feedback, Correct</mattext>
|
|
326
|
+
</material>
|
|
327
|
+
</flow_mat>
|
|
328
|
+
</itemfeedback>
|
|
329
|
+
<itemfeedback ident="general_incorrect_fb">
|
|
330
|
+
<flow_mat>
|
|
331
|
+
<material>
|
|
332
|
+
<mattext texttype="text/plain">Item Feedback, Incorrect</mattext>
|
|
333
|
+
</material>
|
|
334
|
+
</flow_mat>
|
|
335
|
+
</itemfeedback>
|
|
336
|
+
<itemfeedback ident="67059_fb">
|
|
337
|
+
<flow_mat>
|
|
338
|
+
<material>
|
|
339
|
+
<mattext texttype="text/plain">Answer Feedback, Correct, Blank</mattext>
|
|
340
|
+
</material>
|
|
341
|
+
</flow_mat>
|
|
342
|
+
</itemfeedback>
|
|
343
|
+
<itemfeedback ident="94970_fb">
|
|
344
|
+
<flow_mat>
|
|
345
|
+
<material>
|
|
346
|
+
<mattext texttype="text/plain">Answer Feedback, Correct, blank</mattext>
|
|
347
|
+
</material>
|
|
348
|
+
</flow_mat>
|
|
349
|
+
</itemfeedback>
|
|
350
|
+
</item>
|
|
351
|
+
<item ident="i9672606990fe1ed94ba8f88f3fd888a2" title="Question 5">
|
|
352
|
+
<itemmetadata>
|
|
353
|
+
<qtimetadata>
|
|
354
|
+
<qtimetadatafield>
|
|
355
|
+
<fieldlabel>cc_profile</fieldlabel>
|
|
356
|
+
<fieldentry>cc.multiple_response.v0p1</fieldentry>
|
|
357
|
+
</qtimetadatafield>
|
|
358
|
+
</qtimetadata>
|
|
359
|
+
</itemmetadata>
|
|
360
|
+
<presentation>
|
|
361
|
+
<material>
|
|
362
|
+
<mattext texttype="text/html"><div>Question 5, Multiple Answers, Correct Answers: A, B, C</div></mattext>
|
|
363
|
+
</material>
|
|
364
|
+
<response_lid ident="response1" rcardinality="Multiple">
|
|
365
|
+
<render_choice>
|
|
366
|
+
<response_label ident="21591">
|
|
367
|
+
<material>
|
|
368
|
+
<mattext texttype="text/plain">A</mattext>
|
|
369
|
+
</material>
|
|
370
|
+
</response_label>
|
|
371
|
+
<response_label ident="50564">
|
|
372
|
+
<material>
|
|
373
|
+
<mattext texttype="text/plain">B</mattext>
|
|
374
|
+
</material>
|
|
375
|
+
</response_label>
|
|
376
|
+
<response_label ident="87575">
|
|
377
|
+
<material>
|
|
378
|
+
<mattext texttype="text/plain">C</mattext>
|
|
379
|
+
</material>
|
|
380
|
+
</response_label>
|
|
381
|
+
<response_label ident="92409">
|
|
382
|
+
<material>
|
|
383
|
+
<mattext texttype="text/plain">D</mattext>
|
|
384
|
+
</material>
|
|
385
|
+
</response_label>
|
|
386
|
+
<response_label ident="39892">
|
|
387
|
+
<material>
|
|
388
|
+
<mattext texttype="text/plain">E</mattext>
|
|
389
|
+
</material>
|
|
390
|
+
</response_label>
|
|
391
|
+
<response_label ident="66099">
|
|
392
|
+
<material>
|
|
393
|
+
<mattext texttype="text/plain">F</mattext>
|
|
394
|
+
</material>
|
|
395
|
+
</response_label>
|
|
396
|
+
</render_choice>
|
|
397
|
+
</response_lid>
|
|
398
|
+
</presentation>
|
|
399
|
+
<resprocessing>
|
|
400
|
+
<outcomes>
|
|
401
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
|
402
|
+
</outcomes>
|
|
403
|
+
<respcondition continue="Yes">
|
|
404
|
+
<conditionvar>
|
|
405
|
+
<other/>
|
|
406
|
+
</conditionvar>
|
|
407
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
|
408
|
+
</respcondition>
|
|
409
|
+
<respcondition continue="Yes">
|
|
410
|
+
<conditionvar>
|
|
411
|
+
<varequal respident="response1">21591</varequal>
|
|
412
|
+
</conditionvar>
|
|
413
|
+
<displayfeedback feedbacktype="Response" linkrefid="21591_fb"/>
|
|
414
|
+
</respcondition>
|
|
415
|
+
<respcondition continue="Yes">
|
|
416
|
+
<conditionvar>
|
|
417
|
+
<varequal respident="response1">50564</varequal>
|
|
418
|
+
</conditionvar>
|
|
419
|
+
<displayfeedback feedbacktype="Response" linkrefid="50564_fb"/>
|
|
420
|
+
</respcondition>
|
|
421
|
+
<respcondition continue="Yes">
|
|
422
|
+
<conditionvar>
|
|
423
|
+
<varequal respident="response1">87575</varequal>
|
|
424
|
+
</conditionvar>
|
|
425
|
+
<displayfeedback feedbacktype="Response" linkrefid="87575_fb"/>
|
|
426
|
+
</respcondition>
|
|
427
|
+
<respcondition continue="Yes">
|
|
428
|
+
<conditionvar>
|
|
429
|
+
<varequal respident="response1">92409</varequal>
|
|
430
|
+
</conditionvar>
|
|
431
|
+
<displayfeedback feedbacktype="Response" linkrefid="92409_fb"/>
|
|
432
|
+
</respcondition>
|
|
433
|
+
<respcondition continue="Yes">
|
|
434
|
+
<conditionvar>
|
|
435
|
+
<varequal respident="response1">39892</varequal>
|
|
436
|
+
</conditionvar>
|
|
437
|
+
<displayfeedback feedbacktype="Response" linkrefid="39892_fb"/>
|
|
438
|
+
</respcondition>
|
|
439
|
+
<respcondition continue="Yes">
|
|
440
|
+
<conditionvar>
|
|
441
|
+
<varequal respident="response1">66099</varequal>
|
|
442
|
+
</conditionvar>
|
|
443
|
+
<displayfeedback feedbacktype="Response" linkrefid="66099_fb"/>
|
|
444
|
+
</respcondition>
|
|
445
|
+
<respcondition continue="No">
|
|
446
|
+
<conditionvar>
|
|
447
|
+
<and>
|
|
448
|
+
<varequal respident="response1">21591</varequal>
|
|
449
|
+
<varequal respident="response1">50564</varequal>
|
|
450
|
+
<varequal respident="response1">87575</varequal>
|
|
451
|
+
<not>
|
|
452
|
+
<varequal respident="response1">92409</varequal>
|
|
453
|
+
</not>
|
|
454
|
+
<not>
|
|
455
|
+
<varequal respident="response1">39892</varequal>
|
|
456
|
+
</not>
|
|
457
|
+
<not>
|
|
458
|
+
<varequal respident="response1">66099</varequal>
|
|
459
|
+
</not>
|
|
460
|
+
</and>
|
|
461
|
+
</conditionvar>
|
|
462
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
|
463
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
|
464
|
+
</respcondition>
|
|
465
|
+
<respcondition continue="Yes">
|
|
466
|
+
<conditionvar>
|
|
467
|
+
<other/>
|
|
468
|
+
</conditionvar>
|
|
469
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_incorrect_fb"/>
|
|
470
|
+
</respcondition>
|
|
471
|
+
</resprocessing>
|
|
472
|
+
<itemfeedback ident="general_fb">
|
|
473
|
+
<flow_mat>
|
|
474
|
+
<material>
|
|
475
|
+
<mattext texttype="text/plain">Item Feedback, Neutral</mattext>
|
|
476
|
+
</material>
|
|
477
|
+
</flow_mat>
|
|
478
|
+
</itemfeedback>
|
|
479
|
+
<itemfeedback ident="correct_fb">
|
|
480
|
+
<flow_mat>
|
|
481
|
+
<material>
|
|
482
|
+
<mattext texttype="text/plain">Item Feedback, Correct</mattext>
|
|
483
|
+
</material>
|
|
484
|
+
</flow_mat>
|
|
485
|
+
</itemfeedback>
|
|
486
|
+
<itemfeedback ident="general_incorrect_fb">
|
|
487
|
+
<flow_mat>
|
|
488
|
+
<material>
|
|
489
|
+
<mattext texttype="text/plain">Item Feedback, Incorrect</mattext>
|
|
490
|
+
</material>
|
|
491
|
+
</flow_mat>
|
|
492
|
+
</itemfeedback>
|
|
493
|
+
<itemfeedback ident="21591_fb">
|
|
494
|
+
<flow_mat>
|
|
495
|
+
<material>
|
|
496
|
+
<mattext texttype="text/plain">Answer Feedback, correct, A</mattext>
|
|
497
|
+
</material>
|
|
498
|
+
</flow_mat>
|
|
499
|
+
</itemfeedback>
|
|
500
|
+
<itemfeedback ident="50564_fb">
|
|
501
|
+
<flow_mat>
|
|
502
|
+
<material>
|
|
503
|
+
<mattext texttype="text/plain">Answer Feedback, correct, B</mattext>
|
|
504
|
+
</material>
|
|
505
|
+
</flow_mat>
|
|
506
|
+
</itemfeedback>
|
|
507
|
+
<itemfeedback ident="87575_fb">
|
|
508
|
+
<flow_mat>
|
|
509
|
+
<material>
|
|
510
|
+
<mattext texttype="text/plain">Answer Feedback, correct, C</mattext>
|
|
511
|
+
</material>
|
|
512
|
+
</flow_mat>
|
|
513
|
+
</itemfeedback>
|
|
514
|
+
<itemfeedback ident="92409_fb">
|
|
515
|
+
<flow_mat>
|
|
516
|
+
<material>
|
|
517
|
+
<mattext texttype="text/plain">Answer Feedback, incorrect, D</mattext>
|
|
518
|
+
</material>
|
|
519
|
+
</flow_mat>
|
|
520
|
+
</itemfeedback>
|
|
521
|
+
<itemfeedback ident="39892_fb">
|
|
522
|
+
<flow_mat>
|
|
523
|
+
<material>
|
|
524
|
+
<mattext texttype="text/plain">Answer Feedback, incorrect, E</mattext>
|
|
525
|
+
</material>
|
|
526
|
+
</flow_mat>
|
|
527
|
+
</itemfeedback>
|
|
528
|
+
<itemfeedback ident="66099_fb">
|
|
529
|
+
<flow_mat>
|
|
530
|
+
<material>
|
|
531
|
+
<mattext texttype="text/plain">Answer Feedback, incorrect, F</mattext>
|
|
532
|
+
</material>
|
|
533
|
+
</flow_mat>
|
|
534
|
+
</itemfeedback>
|
|
535
|
+
</item>
|
|
536
|
+
<item ident="i5d262a9db52863ec133a25e458e5af1d" title="Question 10">
|
|
537
|
+
<itemmetadata>
|
|
538
|
+
<qtimetadata>
|
|
539
|
+
<qtimetadatafield>
|
|
540
|
+
<fieldlabel>cc_profile</fieldlabel>
|
|
541
|
+
<fieldentry>cc.essay.v0p1</fieldentry>
|
|
542
|
+
</qtimetadatafield>
|
|
543
|
+
<qtimetadatafield>
|
|
544
|
+
<fieldlabel>qmd_computerscored</fieldlabel>
|
|
545
|
+
<fieldentry>No</fieldentry>
|
|
546
|
+
</qtimetadatafield>
|
|
547
|
+
</qtimetadata>
|
|
548
|
+
</itemmetadata>
|
|
549
|
+
<presentation>
|
|
550
|
+
<material>
|
|
551
|
+
<mattext texttype="text/html"><div>Question 10, Essay</div></mattext>
|
|
552
|
+
</material>
|
|
553
|
+
<response_str ident="response1" rcardinality="Single">
|
|
554
|
+
<render_fib>
|
|
555
|
+
<response_label ident="answer1" rshuffle="No"/>
|
|
556
|
+
</render_fib>
|
|
557
|
+
</response_str>
|
|
558
|
+
</presentation>
|
|
559
|
+
<resprocessing>
|
|
560
|
+
<outcomes>
|
|
561
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
|
562
|
+
</outcomes>
|
|
563
|
+
<respcondition continue="Yes">
|
|
564
|
+
<conditionvar>
|
|
565
|
+
<other/>
|
|
566
|
+
</conditionvar>
|
|
567
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
|
568
|
+
</respcondition>
|
|
569
|
+
<respcondition continue="No">
|
|
570
|
+
<conditionvar>
|
|
571
|
+
<other/>
|
|
572
|
+
</conditionvar>
|
|
573
|
+
</respcondition>
|
|
574
|
+
</resprocessing>
|
|
575
|
+
<itemfeedback ident="general_fb">
|
|
576
|
+
<flow_mat>
|
|
577
|
+
<material>
|
|
578
|
+
<mattext texttype="text/plain">Item Feedback, Neutral</mattext>
|
|
579
|
+
</material>
|
|
580
|
+
</flow_mat>
|
|
581
|
+
</itemfeedback>
|
|
582
|
+
</item>
|
|
583
|
+
</section>
|
|
584
|
+
</assessment>
|
|
585
|
+
</questestinterop>
|