qti 0.9.14 → 0.9.15
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.rb +1 -0
- data/lib/qti/v1/models/assessment.rb +17 -4
- data/lib/qti/v1/models/assessment_item.rb +4 -0
- data/lib/qti/v1/models/base.rb +2 -1
- data/lib/qti/v1/models/interactions/base_interaction.rb +36 -0
- data/lib/qti/v1/models/interactions/choice_interaction.rb +9 -0
- data/lib/qti/v1/models/interactions/fill_blank_interaction.rb +1 -1
- data/lib/qti/v1/models/interactions/match_interaction.rb +3 -1
- data/lib/qti/v1/models/interactions/numeric_interaction.rb +1 -1
- data/lib/qti/v1/models/interactions/string_interaction.rb +3 -2
- data/lib/qti/v1/models/stimulus_item.rb +33 -0
- data/lib/qti/v2/models/assessment_item.rb +4 -0
- data/lib/qti/v2/models/interactions/base_interaction.rb +2 -0
- data/lib/qti/version.rb +1 -1
- data/spec/fixtures/all_canvas_simple_1.2.xml +1676 -0
- data/spec/fixtures/feedback_quiz_1.2.xml +246 -0
- data/spec/fixtures/items_1.2/matching_feedback.xml +370 -0
- data/spec/fixtures/items_1.2/text.no.question.xml +36 -0
- data/spec/lib/qti/v1/models/assessment_item_spec.rb +11 -0
- data/spec/lib/qti/v1/models/assessment_spec.rb +187 -13
- data/spec/lib/qti/v1/models/interactions/base_interaction_spec.rb +56 -0
- data/spec/lib/qti/v1/models/interactions/choice_interaction_spec.rb +12 -0
- data/spec/lib/qti/v1/models/interactions/match_interaction_spec.rb +67 -23
- data/spec/lib/qti/v1/models/stimulus_item_spec.rb +55 -0
- metadata +14 -7
- data/spec/gemfiles/nokogiri-1.6.gemfile.lock +0 -149
- data/spec/gemfiles/nokogiri-1.8.gemfile.lock +0 -149
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8dfbb995050d6f96236c13763df14484facddf2
|
4
|
+
data.tar.gz: ddad67a9fc66d777dce6f10f139acd17d27d64d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 494589a3af528b02a421dc82d62655bbc8ba92b951b702d52d063d08c267659378c77effab05868214f02917595fafb32debdda7cfb9c44d15744347f93fd8ac
|
7
|
+
data.tar.gz: 3492fc4f76245c3eac54835c9194ced234198d20d76a28334d5708c98487865098be6c6c4b5a9344414ea7d452f56883a24414e37ee59c7dc71bba60959e76a3
|
data/lib/qti.rb
CHANGED
@@ -60,6 +60,7 @@ require 'qti/v1/models/numerics/precision'
|
|
60
60
|
require 'qti/v1/models/numerics/scoring_data'
|
61
61
|
require 'qti/v1/models/numerics/scoring_node'
|
62
62
|
require 'qti/v1/models/numerics/within_range'
|
63
|
+
require 'qti/v1/models/stimulus_item'
|
63
64
|
|
64
65
|
require 'qti/v2/models/base'
|
65
66
|
require 'qti/v2/models/choices/simple_choice'
|
@@ -13,17 +13,30 @@ module Qti
|
|
13
13
|
end
|
14
14
|
|
15
15
|
def create_assessment_item(assessment_item)
|
16
|
+
return nil if stimulus?(assessment_item)
|
16
17
|
item = Qti::V1::Models::AssessmentItem.new(assessment_item, @package_root)
|
17
18
|
item.manifest = manifest
|
18
19
|
item
|
19
20
|
end
|
20
21
|
|
21
|
-
def stimulus_ref(
|
22
|
-
|
22
|
+
def stimulus_ref(assessment_item_ref)
|
23
|
+
assessment_item_ref
|
23
24
|
end
|
24
25
|
|
25
|
-
def create_stimulus(
|
26
|
-
|
26
|
+
def create_stimulus(stimulus_ref)
|
27
|
+
return nil unless stimulus?(stimulus_ref)
|
28
|
+
Qti::V1::Models::StimulusItem.new(stimulus_ref)
|
29
|
+
end
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def stimulus?(ref_node)
|
34
|
+
meta_node = ref_node.at_xpath(
|
35
|
+
'.//xmlns:qtimetadatafield[./xmlns:fieldlabel/text()="question_type"]'
|
36
|
+
)
|
37
|
+
return false unless meta_node.present?
|
38
|
+
type_node = meta_node.at_xpath('.//xmlns:fieldentry')
|
39
|
+
type_node&.text() == 'text_only_question'
|
27
40
|
end
|
28
41
|
end
|
29
42
|
end
|
data/lib/qti/v1/models/base.rb
CHANGED
@@ -9,7 +9,8 @@ module Qti
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def return_inner_content!(node)
|
12
|
-
if node.
|
12
|
+
if node.attributes['texttype']&.value == 'text/plain' ||
|
13
|
+
node.child.cdata? || node.inner_html.include?('>' || '<')
|
13
14
|
node.text
|
14
15
|
else
|
15
16
|
node.inner_html
|
@@ -31,6 +31,42 @@ module Qti
|
|
31
31
|
def rcardinality
|
32
32
|
@rcardinality ||= @node.at_xpath('.//xmlns:response_lid/@rcardinality')&.value || 'Single'
|
33
33
|
end
|
34
|
+
|
35
|
+
def canvas_item_feedback
|
36
|
+
{
|
37
|
+
neutral: get_feedback('general_fb')&.text,
|
38
|
+
correct: get_feedback('correct_fb')&.text,
|
39
|
+
incorrect: get_feedback('general_incorrect_fb')&.text
|
40
|
+
}.compact
|
41
|
+
end
|
42
|
+
|
43
|
+
def answer_feedback
|
44
|
+
path = './/xmlns:respcondition//xmlns:displayfeedback/../' \
|
45
|
+
'xmlns:conditionvar/xmlns:varequal[@respident]/../../' \
|
46
|
+
'xmlns:displayfeedback/..'
|
47
|
+
answers = node.xpath(path).map do |entry|
|
48
|
+
answer_feedback_entry(entry)
|
49
|
+
end
|
50
|
+
answers unless answers.empty?
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def answer_feedback_entry(entry)
|
56
|
+
ve = entry.xpath('.//xmlns:varequal').first
|
57
|
+
refid = entry.xpath('./xmlns:displayfeedback').first[:linkrefid]
|
58
|
+
feedback = get_feedback(refid)
|
59
|
+
{
|
60
|
+
response_id: ve[:respident],
|
61
|
+
response_value: ve.text,
|
62
|
+
texttype: feedback[:texttype],
|
63
|
+
feedback: feedback.text
|
64
|
+
}
|
65
|
+
end
|
66
|
+
|
67
|
+
def get_feedback(ident)
|
68
|
+
node.xpath(".//xmlns:itemfeedback[@ident='#{ident}']/xmlns:*/xmlns:*/xmlns:mattext").first
|
69
|
+
end
|
34
70
|
end
|
35
71
|
end
|
36
72
|
end
|
@@ -18,6 +18,15 @@ module Qti
|
|
18
18
|
end
|
19
19
|
end
|
20
20
|
|
21
|
+
def meta_type
|
22
|
+
meta_node = node.at_xpath(
|
23
|
+
'.//xmlns:qtimetadatafield[./xmlns:fieldlabel/text()="question_type"]'
|
24
|
+
)
|
25
|
+
return nil unless meta_node.present?
|
26
|
+
type_node = meta_node.at_xpath('.//xmlns:fieldentry')
|
27
|
+
type_node&.text()
|
28
|
+
end
|
29
|
+
|
21
30
|
def scoring_data_structs
|
22
31
|
choice_nodes = node.xpath('.//xmlns:respcondition')
|
23
32
|
if choice_nodes.at_xpath('.//xmlns:and').present?
|
@@ -7,7 +7,7 @@ module Qti
|
|
7
7
|
|
8
8
|
# This will know if a class matches
|
9
9
|
def self.matches(node, parent)
|
10
|
-
return false if node.at_xpath('.//xmlns:other').present?
|
10
|
+
return false if node.at_xpath('.//xmlns:respcondition[@continue!="Yes"]/*/xmlns:other').present?
|
11
11
|
match = if BaseInteraction.canvas_multiple_fib?(node)
|
12
12
|
node.at_xpath('.//xmlns:response_lid')
|
13
13
|
else
|
@@ -26,7 +26,9 @@ module Qti
|
|
26
26
|
end
|
27
27
|
|
28
28
|
def scoring_data_structs
|
29
|
-
|
29
|
+
# This preserves the original behavior while not breaking on itemfeedback
|
30
|
+
path = './/xmlns:respcondition/xmlns:setvar/../xmlns:conditionvar/xmlns:varequal'
|
31
|
+
matches = node.xpath(path).map do |node|
|
30
32
|
[node.attributes['respident'].value, answers_map[node.content]]
|
31
33
|
end
|
32
34
|
[Models::ScoringData.new(Hash[matches], rcardinality)]
|
@@ -5,10 +5,11 @@ module Qti
|
|
5
5
|
class StringInteraction < BaseInteraction
|
6
6
|
# This will know if a class matches
|
7
7
|
def self.matches(node, parent)
|
8
|
-
return false unless node.xpath('.//xmlns:other').present?
|
8
|
+
return false unless node.xpath('.//xmlns:respcondition[@continue!="Yes"]/*/xmlns:other').present?
|
9
|
+
|
9
10
|
matches = node.xpath('.//xmlns:render_fib')
|
10
11
|
return false if matches.empty?
|
11
|
-
new(
|
12
|
+
new(node, parent)
|
12
13
|
end
|
13
14
|
|
14
15
|
private
|
@@ -0,0 +1,33 @@
|
|
1
|
+
module Qti
|
2
|
+
module V1
|
3
|
+
module Models
|
4
|
+
class StimulusItem
|
5
|
+
def initialize(ref_node)
|
6
|
+
@node = ref_node
|
7
|
+
end
|
8
|
+
|
9
|
+
# Not used yet
|
10
|
+
def identifier
|
11
|
+
@identifier ||= @node.attributes['ident']&.value
|
12
|
+
end
|
13
|
+
|
14
|
+
def title
|
15
|
+
@title ||= @node.attributes['title']&.value
|
16
|
+
end
|
17
|
+
|
18
|
+
def body
|
19
|
+
@body ||= begin
|
20
|
+
presentation = @node.at_xpath('.//xmlns:presentation')
|
21
|
+
return nil if presentation.blank?
|
22
|
+
mattext = presentation.at_xpath('.//xmlns:mattext')
|
23
|
+
mattext&.text
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def stimulus_type
|
28
|
+
'text'
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
data/lib/qti/version.rb
CHANGED
@@ -0,0 +1,1676 @@
|
|
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/xsd/ims_qtiasiv1p2p1.xsd">
|
3
|
+
<assessment ident="ie09bc528e6ecd1cb9ebfafd940c20215" title="Every Canvas Interaction">
|
4
|
+
<qtimetadata>
|
5
|
+
<qtimetadatafield>
|
6
|
+
<fieldlabel>cc_maxattempts</fieldlabel>
|
7
|
+
<fieldentry>1</fieldentry>
|
8
|
+
</qtimetadatafield>
|
9
|
+
</qtimetadata>
|
10
|
+
<section ident="root_section">
|
11
|
+
<item ident="ia4813e41c5505cc0eb7fec982226364e" title="Question 1">
|
12
|
+
<itemmetadata>
|
13
|
+
<qtimetadata>
|
14
|
+
<qtimetadatafield>
|
15
|
+
<fieldlabel>question_type</fieldlabel>
|
16
|
+
<fieldentry>multiple_choice_question</fieldentry>
|
17
|
+
</qtimetadatafield>
|
18
|
+
<qtimetadatafield>
|
19
|
+
<fieldlabel>points_possible</fieldlabel>
|
20
|
+
<fieldentry>1.0</fieldentry>
|
21
|
+
</qtimetadatafield>
|
22
|
+
<qtimetadatafield>
|
23
|
+
<fieldlabel>assessment_question_identifierref</fieldlabel>
|
24
|
+
<fieldentry>i90fa601541c7d9c3999bef14c7fb5bf6</fieldentry>
|
25
|
+
</qtimetadatafield>
|
26
|
+
</qtimetadata>
|
27
|
+
</itemmetadata>
|
28
|
+
<presentation>
|
29
|
+
<material>
|
30
|
+
<mattext texttype="text/html"><div><p>Question 1, Multiple Choice, Answer is C</p></div></mattext>
|
31
|
+
</material>
|
32
|
+
<response_lid ident="response1" rcardinality="Single">
|
33
|
+
<render_choice>
|
34
|
+
<response_label ident="2799">
|
35
|
+
<material>
|
36
|
+
<mattext texttype="text/plain">C</mattext>
|
37
|
+
</material>
|
38
|
+
</response_label>
|
39
|
+
<response_label ident="9607">
|
40
|
+
<material>
|
41
|
+
<mattext texttype="text/plain">A</mattext>
|
42
|
+
</material>
|
43
|
+
</response_label>
|
44
|
+
<response_label ident="599">
|
45
|
+
<material>
|
46
|
+
<mattext texttype="text/plain">B</mattext>
|
47
|
+
</material>
|
48
|
+
</response_label>
|
49
|
+
<response_label ident="5711">
|
50
|
+
<material>
|
51
|
+
<mattext texttype="text/plain">D</mattext>
|
52
|
+
</material>
|
53
|
+
</response_label>
|
54
|
+
</render_choice>
|
55
|
+
</response_lid>
|
56
|
+
</presentation>
|
57
|
+
<resprocessing>
|
58
|
+
<outcomes>
|
59
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
60
|
+
</outcomes>
|
61
|
+
<respcondition continue="Yes">
|
62
|
+
<conditionvar>
|
63
|
+
<other/>
|
64
|
+
</conditionvar>
|
65
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
66
|
+
</respcondition>
|
67
|
+
<respcondition continue="Yes">
|
68
|
+
<conditionvar>
|
69
|
+
<varequal respident="response1">2799</varequal>
|
70
|
+
</conditionvar>
|
71
|
+
<displayfeedback feedbacktype="Response" linkrefid="2799_fb"/>
|
72
|
+
</respcondition>
|
73
|
+
<respcondition continue="Yes">
|
74
|
+
<conditionvar>
|
75
|
+
<varequal respident="response1">9607</varequal>
|
76
|
+
</conditionvar>
|
77
|
+
<displayfeedback feedbacktype="Response" linkrefid="9607_fb"/>
|
78
|
+
</respcondition>
|
79
|
+
<respcondition continue="Yes">
|
80
|
+
<conditionvar>
|
81
|
+
<varequal respident="response1">599</varequal>
|
82
|
+
</conditionvar>
|
83
|
+
<displayfeedback feedbacktype="Response" linkrefid="599_fb"/>
|
84
|
+
</respcondition>
|
85
|
+
<respcondition continue="Yes">
|
86
|
+
<conditionvar>
|
87
|
+
<varequal respident="response1">5711</varequal>
|
88
|
+
</conditionvar>
|
89
|
+
<displayfeedback feedbacktype="Response" linkrefid="5711_fb"/>
|
90
|
+
</respcondition>
|
91
|
+
<respcondition continue="No">
|
92
|
+
<conditionvar>
|
93
|
+
<varequal respident="response1">2799</varequal>
|
94
|
+
</conditionvar>
|
95
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
96
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
97
|
+
</respcondition>
|
98
|
+
<respcondition continue="Yes">
|
99
|
+
<conditionvar>
|
100
|
+
<other/>
|
101
|
+
</conditionvar>
|
102
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_incorrect_fb"/>
|
103
|
+
</respcondition>
|
104
|
+
</resprocessing>
|
105
|
+
<itemfeedback ident="general_fb">
|
106
|
+
<flow_mat>
|
107
|
+
<material>
|
108
|
+
<mattext texttype="text/html"><p>Item Feedback, Neutral</p></mattext>
|
109
|
+
</material>
|
110
|
+
</flow_mat>
|
111
|
+
</itemfeedback>
|
112
|
+
<itemfeedback ident="correct_fb">
|
113
|
+
<flow_mat>
|
114
|
+
<material>
|
115
|
+
<mattext texttype="text/html"><p>Item Feedback, Correct</p></mattext>
|
116
|
+
</material>
|
117
|
+
</flow_mat>
|
118
|
+
</itemfeedback>
|
119
|
+
<itemfeedback ident="general_incorrect_fb">
|
120
|
+
<flow_mat>
|
121
|
+
<material>
|
122
|
+
<mattext texttype="text/html"><p>Item Feedback, Incorrect</p></mattext>
|
123
|
+
</material>
|
124
|
+
</flow_mat>
|
125
|
+
</itemfeedback>
|
126
|
+
<itemfeedback ident="2799_fb">
|
127
|
+
<flow_mat>
|
128
|
+
<material>
|
129
|
+
<mattext texttype="text/html"><p>Answer feedback for C, correct</p></mattext>
|
130
|
+
</material>
|
131
|
+
</flow_mat>
|
132
|
+
</itemfeedback>
|
133
|
+
<itemfeedback ident="9607_fb">
|
134
|
+
<flow_mat>
|
135
|
+
<material>
|
136
|
+
<mattext texttype="text/html"><p>Answer feedback for A, incorrect</p></mattext>
|
137
|
+
</material>
|
138
|
+
</flow_mat>
|
139
|
+
</itemfeedback>
|
140
|
+
<itemfeedback ident="599_fb">
|
141
|
+
<flow_mat>
|
142
|
+
<material>
|
143
|
+
<mattext texttype="text/html"><p>Answer feedback for B, incorrect</p></mattext>
|
144
|
+
</material>
|
145
|
+
</flow_mat>
|
146
|
+
</itemfeedback>
|
147
|
+
<itemfeedback ident="5711_fb">
|
148
|
+
<flow_mat>
|
149
|
+
<material>
|
150
|
+
<mattext texttype="text/html"><p>Answer feedback for D, incorrect</p></mattext>
|
151
|
+
</material>
|
152
|
+
</flow_mat>
|
153
|
+
</itemfeedback>
|
154
|
+
</item>
|
155
|
+
<item ident="id9d8b63d85a03f2987646622805b61cf" title="Question 2">
|
156
|
+
<itemmetadata>
|
157
|
+
<qtimetadata>
|
158
|
+
<qtimetadatafield>
|
159
|
+
<fieldlabel>question_type</fieldlabel>
|
160
|
+
<fieldentry>true_false_question</fieldentry>
|
161
|
+
</qtimetadatafield>
|
162
|
+
<qtimetadatafield>
|
163
|
+
<fieldlabel>points_possible</fieldlabel>
|
164
|
+
<fieldentry>1.0</fieldentry>
|
165
|
+
</qtimetadatafield>
|
166
|
+
<qtimetadatafield>
|
167
|
+
<fieldlabel>assessment_question_identifierref</fieldlabel>
|
168
|
+
<fieldentry>i7ad7f9841cc58f0a1392816b78aaa878</fieldentry>
|
169
|
+
</qtimetadatafield>
|
170
|
+
</qtimetadata>
|
171
|
+
</itemmetadata>
|
172
|
+
<presentation>
|
173
|
+
<material>
|
174
|
+
<mattext texttype="text/html"><div><p>Question 2, True/False, Answer is True</p></div></mattext>
|
175
|
+
</material>
|
176
|
+
<response_lid ident="response1" rcardinality="Single">
|
177
|
+
<render_choice>
|
178
|
+
<response_label ident="919">
|
179
|
+
<material>
|
180
|
+
<mattext texttype="text/plain">True</mattext>
|
181
|
+
</material>
|
182
|
+
</response_label>
|
183
|
+
<response_label ident="2680">
|
184
|
+
<material>
|
185
|
+
<mattext texttype="text/plain">False</mattext>
|
186
|
+
</material>
|
187
|
+
</response_label>
|
188
|
+
</render_choice>
|
189
|
+
</response_lid>
|
190
|
+
</presentation>
|
191
|
+
<resprocessing>
|
192
|
+
<outcomes>
|
193
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
194
|
+
</outcomes>
|
195
|
+
<respcondition continue="Yes">
|
196
|
+
<conditionvar>
|
197
|
+
<other/>
|
198
|
+
</conditionvar>
|
199
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
200
|
+
</respcondition>
|
201
|
+
<respcondition continue="Yes">
|
202
|
+
<conditionvar>
|
203
|
+
<varequal respident="response1">919</varequal>
|
204
|
+
</conditionvar>
|
205
|
+
<displayfeedback feedbacktype="Response" linkrefid="919_fb"/>
|
206
|
+
</respcondition>
|
207
|
+
<respcondition continue="Yes">
|
208
|
+
<conditionvar>
|
209
|
+
<varequal respident="response1">2680</varequal>
|
210
|
+
</conditionvar>
|
211
|
+
<displayfeedback feedbacktype="Response" linkrefid="2680_fb"/>
|
212
|
+
</respcondition>
|
213
|
+
<respcondition continue="No">
|
214
|
+
<conditionvar>
|
215
|
+
<varequal respident="response1">919</varequal>
|
216
|
+
</conditionvar>
|
217
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
218
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
219
|
+
</respcondition>
|
220
|
+
<respcondition continue="Yes">
|
221
|
+
<conditionvar>
|
222
|
+
<other/>
|
223
|
+
</conditionvar>
|
224
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_incorrect_fb"/>
|
225
|
+
</respcondition>
|
226
|
+
</resprocessing>
|
227
|
+
<itemfeedback ident="general_fb">
|
228
|
+
<flow_mat>
|
229
|
+
<material>
|
230
|
+
<mattext texttype="text/html"><p>Item Feedback, Neutral</p></mattext>
|
231
|
+
</material>
|
232
|
+
</flow_mat>
|
233
|
+
</itemfeedback>
|
234
|
+
<itemfeedback ident="correct_fb">
|
235
|
+
<flow_mat>
|
236
|
+
<material>
|
237
|
+
<mattext texttype="text/html"><p>Item Feedback, Correct</p></mattext>
|
238
|
+
</material>
|
239
|
+
</flow_mat>
|
240
|
+
</itemfeedback>
|
241
|
+
<itemfeedback ident="general_incorrect_fb">
|
242
|
+
<flow_mat>
|
243
|
+
<material>
|
244
|
+
<mattext texttype="text/html"><p>Item Feedback, Incorrect</p></mattext>
|
245
|
+
</material>
|
246
|
+
</flow_mat>
|
247
|
+
</itemfeedback>
|
248
|
+
<itemfeedback ident="919_fb">
|
249
|
+
<flow_mat>
|
250
|
+
<material>
|
251
|
+
<mattext texttype="text/html"><p>Answer Feedback, True, Correct</p></mattext>
|
252
|
+
</material>
|
253
|
+
</flow_mat>
|
254
|
+
</itemfeedback>
|
255
|
+
<itemfeedback ident="2680_fb">
|
256
|
+
<flow_mat>
|
257
|
+
<material>
|
258
|
+
<mattext texttype="text/html"><p>Answer Feedback, False, Incorrect</p></mattext>
|
259
|
+
</material>
|
260
|
+
</flow_mat>
|
261
|
+
</itemfeedback>
|
262
|
+
</item>
|
263
|
+
<item ident="ice33989533cca4de7f72a4ec804f9913" title="Question 3">
|
264
|
+
<itemmetadata>
|
265
|
+
<qtimetadata>
|
266
|
+
<qtimetadatafield>
|
267
|
+
<fieldlabel>question_type</fieldlabel>
|
268
|
+
<fieldentry>short_answer_question</fieldentry>
|
269
|
+
</qtimetadatafield>
|
270
|
+
<qtimetadatafield>
|
271
|
+
<fieldlabel>points_possible</fieldlabel>
|
272
|
+
<fieldentry>1.0</fieldentry>
|
273
|
+
</qtimetadatafield>
|
274
|
+
<qtimetadatafield>
|
275
|
+
<fieldlabel>assessment_question_identifierref</fieldlabel>
|
276
|
+
<fieldentry>i36a4a01b32ad294f4b4a1c72f34cbb88</fieldentry>
|
277
|
+
</qtimetadatafield>
|
278
|
+
</qtimetadata>
|
279
|
+
</itemmetadata>
|
280
|
+
<presentation>
|
281
|
+
<material>
|
282
|
+
<mattext texttype="text/html"><div><p>Question 3, Fill in the</p></div></mattext>
|
283
|
+
</material>
|
284
|
+
<response_str ident="response1" rcardinality="Single">
|
285
|
+
<render_fib>
|
286
|
+
<response_label ident="answer1" rshuffle="No"/>
|
287
|
+
</render_fib>
|
288
|
+
</response_str>
|
289
|
+
</presentation>
|
290
|
+
<resprocessing>
|
291
|
+
<outcomes>
|
292
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
293
|
+
</outcomes>
|
294
|
+
<respcondition continue="Yes">
|
295
|
+
<conditionvar>
|
296
|
+
<other/>
|
297
|
+
</conditionvar>
|
298
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
299
|
+
</respcondition>
|
300
|
+
<respcondition continue="Yes">
|
301
|
+
<conditionvar>
|
302
|
+
<varequal respident="response1">Blank</varequal>
|
303
|
+
</conditionvar>
|
304
|
+
<displayfeedback feedbacktype="Response" linkrefid="4993_fb"/>
|
305
|
+
</respcondition>
|
306
|
+
<respcondition continue="Yes">
|
307
|
+
<conditionvar>
|
308
|
+
<varequal respident="response1">blank</varequal>
|
309
|
+
</conditionvar>
|
310
|
+
<displayfeedback feedbacktype="Response" linkrefid="4346_fb"/>
|
311
|
+
</respcondition>
|
312
|
+
<respcondition continue="No">
|
313
|
+
<conditionvar>
|
314
|
+
<varequal respident="response1">Blank</varequal>
|
315
|
+
<varequal respident="response1">blank</varequal>
|
316
|
+
</conditionvar>
|
317
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
318
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
319
|
+
</respcondition>
|
320
|
+
<respcondition continue="Yes">
|
321
|
+
<conditionvar>
|
322
|
+
<other/>
|
323
|
+
</conditionvar>
|
324
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_incorrect_fb"/>
|
325
|
+
</respcondition>
|
326
|
+
</resprocessing>
|
327
|
+
<itemfeedback ident="general_fb">
|
328
|
+
<flow_mat>
|
329
|
+
<material>
|
330
|
+
<mattext texttype="text/html"><p>Item Feedback, Neutral</p></mattext>
|
331
|
+
</material>
|
332
|
+
</flow_mat>
|
333
|
+
</itemfeedback>
|
334
|
+
<itemfeedback ident="correct_fb">
|
335
|
+
<flow_mat>
|
336
|
+
<material>
|
337
|
+
<mattext texttype="text/html"><p>Item Feedback, Correct</p></mattext>
|
338
|
+
</material>
|
339
|
+
</flow_mat>
|
340
|
+
</itemfeedback>
|
341
|
+
<itemfeedback ident="general_incorrect_fb">
|
342
|
+
<flow_mat>
|
343
|
+
<material>
|
344
|
+
<mattext texttype="text/html"><p>Item Feedback, Incorrect</p></mattext>
|
345
|
+
</material>
|
346
|
+
</flow_mat>
|
347
|
+
</itemfeedback>
|
348
|
+
<itemfeedback ident="4993_fb">
|
349
|
+
<flow_mat>
|
350
|
+
<material>
|
351
|
+
<mattext texttype="text/html"><p>Answer Feedback, Correct, Blank</p></mattext>
|
352
|
+
</material>
|
353
|
+
</flow_mat>
|
354
|
+
</itemfeedback>
|
355
|
+
<itemfeedback ident="4346_fb">
|
356
|
+
<flow_mat>
|
357
|
+
<material>
|
358
|
+
<mattext texttype="text/html"><p>Answer Feedback, Correct, blank</p></mattext>
|
359
|
+
</material>
|
360
|
+
</flow_mat>
|
361
|
+
</itemfeedback>
|
362
|
+
</item>
|
363
|
+
<item ident="i2fcd1e9d01e3b1529bf9bfbe56e513dd" title="Question 4">
|
364
|
+
<itemmetadata>
|
365
|
+
<qtimetadata>
|
366
|
+
<qtimetadatafield>
|
367
|
+
<fieldlabel>question_type</fieldlabel>
|
368
|
+
<fieldentry>fill_in_multiple_blanks_question</fieldentry>
|
369
|
+
</qtimetadatafield>
|
370
|
+
<qtimetadatafield>
|
371
|
+
<fieldlabel>points_possible</fieldlabel>
|
372
|
+
<fieldentry>1.0</fieldentry>
|
373
|
+
</qtimetadatafield>
|
374
|
+
<qtimetadatafield>
|
375
|
+
<fieldlabel>assessment_question_identifierref</fieldlabel>
|
376
|
+
<fieldentry>ie3557e3c54508294b1ee296dab8ac537</fieldentry>
|
377
|
+
</qtimetadatafield>
|
378
|
+
</qtimetadata>
|
379
|
+
</itemmetadata>
|
380
|
+
<presentation>
|
381
|
+
<material>
|
382
|
+
<mattext texttype="text/html"><div><p>Question 4, Fill in [Multiple] [Blanks], Answers 'Multiple', 'Blanks'</p></div></mattext>
|
383
|
+
</material>
|
384
|
+
<response_lid ident="response_Multiple">
|
385
|
+
<material>
|
386
|
+
<mattext>Multiple</mattext>
|
387
|
+
</material>
|
388
|
+
<render_choice>
|
389
|
+
<response_label ident="832">
|
390
|
+
<material>
|
391
|
+
<mattext texttype="text/plain">Multiple</mattext>
|
392
|
+
</material>
|
393
|
+
</response_label>
|
394
|
+
<response_label ident="2173">
|
395
|
+
<material>
|
396
|
+
<mattext texttype="text/plain">multiple</mattext>
|
397
|
+
</material>
|
398
|
+
</response_label>
|
399
|
+
</render_choice>
|
400
|
+
</response_lid>
|
401
|
+
<response_lid ident="response_Blanks">
|
402
|
+
<material>
|
403
|
+
<mattext>Blanks</mattext>
|
404
|
+
</material>
|
405
|
+
<render_choice>
|
406
|
+
<response_label ident="9226">
|
407
|
+
<material>
|
408
|
+
<mattext texttype="text/plain">Blanks</mattext>
|
409
|
+
</material>
|
410
|
+
</response_label>
|
411
|
+
<response_label ident="1700">
|
412
|
+
<material>
|
413
|
+
<mattext texttype="text/plain">blanks</mattext>
|
414
|
+
</material>
|
415
|
+
</response_label>
|
416
|
+
</render_choice>
|
417
|
+
</response_lid>
|
418
|
+
</presentation>
|
419
|
+
<resprocessing>
|
420
|
+
<outcomes>
|
421
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
422
|
+
</outcomes>
|
423
|
+
<respcondition continue="Yes">
|
424
|
+
<conditionvar>
|
425
|
+
<other/>
|
426
|
+
</conditionvar>
|
427
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
428
|
+
</respcondition>
|
429
|
+
<respcondition continue="Yes">
|
430
|
+
<conditionvar>
|
431
|
+
<varequal respident="response_Multiple">832</varequal>
|
432
|
+
</conditionvar>
|
433
|
+
<displayfeedback feedbacktype="Response" linkrefid="832_fb"/>
|
434
|
+
</respcondition>
|
435
|
+
<respcondition continue="Yes">
|
436
|
+
<conditionvar>
|
437
|
+
<varequal respident="response_Multiple">2173</varequal>
|
438
|
+
</conditionvar>
|
439
|
+
<displayfeedback feedbacktype="Response" linkrefid="2173_fb"/>
|
440
|
+
</respcondition>
|
441
|
+
<respcondition continue="Yes">
|
442
|
+
<conditionvar>
|
443
|
+
<varequal respident="response_Blanks">9226</varequal>
|
444
|
+
</conditionvar>
|
445
|
+
<displayfeedback feedbacktype="Response" linkrefid="9226_fb"/>
|
446
|
+
</respcondition>
|
447
|
+
<respcondition continue="Yes">
|
448
|
+
<conditionvar>
|
449
|
+
<varequal respident="response_Blanks">1700</varequal>
|
450
|
+
</conditionvar>
|
451
|
+
<displayfeedback feedbacktype="Response" linkrefid="1700_fb"/>
|
452
|
+
</respcondition>
|
453
|
+
<respcondition>
|
454
|
+
<conditionvar>
|
455
|
+
<varequal respident="response_Multiple">832</varequal>
|
456
|
+
</conditionvar>
|
457
|
+
<setvar varname="SCORE" action="Add">50.00</setvar>
|
458
|
+
</respcondition>
|
459
|
+
<respcondition>
|
460
|
+
<conditionvar>
|
461
|
+
<varequal respident="response_Blanks">9226</varequal>
|
462
|
+
</conditionvar>
|
463
|
+
<setvar varname="SCORE" action="Add">50.00</setvar>
|
464
|
+
</respcondition>
|
465
|
+
</resprocessing>
|
466
|
+
<itemfeedback ident="general_fb">
|
467
|
+
<flow_mat>
|
468
|
+
<material>
|
469
|
+
<mattext texttype="text/html"><p>Item Feedback, Neutral</p></mattext>
|
470
|
+
</material>
|
471
|
+
</flow_mat>
|
472
|
+
</itemfeedback>
|
473
|
+
<itemfeedback ident="correct_fb">
|
474
|
+
<flow_mat>
|
475
|
+
<material>
|
476
|
+
<mattext texttype="text/html"><p>Item Feedback, Correct</p></mattext>
|
477
|
+
</material>
|
478
|
+
</flow_mat>
|
479
|
+
</itemfeedback>
|
480
|
+
<itemfeedback ident="general_incorrect_fb">
|
481
|
+
<flow_mat>
|
482
|
+
<material>
|
483
|
+
<mattext texttype="text/html"><p>Item Feedback, Incorrect</p></mattext>
|
484
|
+
</material>
|
485
|
+
</flow_mat>
|
486
|
+
</itemfeedback>
|
487
|
+
<itemfeedback ident="832_fb">
|
488
|
+
<flow_mat>
|
489
|
+
<material>
|
490
|
+
<mattext texttype="text/html"><p>Answer Feedback, correct, Multiple</p></mattext>
|
491
|
+
</material>
|
492
|
+
</flow_mat>
|
493
|
+
</itemfeedback>
|
494
|
+
<itemfeedback ident="2173_fb">
|
495
|
+
<flow_mat>
|
496
|
+
<material>
|
497
|
+
<mattext texttype="text/html"><p>Answer Feedback, correct, multiple</p></mattext>
|
498
|
+
</material>
|
499
|
+
</flow_mat>
|
500
|
+
</itemfeedback>
|
501
|
+
<itemfeedback ident="9226_fb">
|
502
|
+
<flow_mat>
|
503
|
+
<material>
|
504
|
+
<mattext texttype="text/html"><p>Answer Feedback, correct, Blanks</p></mattext>
|
505
|
+
</material>
|
506
|
+
</flow_mat>
|
507
|
+
</itemfeedback>
|
508
|
+
<itemfeedback ident="1700_fb">
|
509
|
+
<flow_mat>
|
510
|
+
<material>
|
511
|
+
<mattext texttype="text/html"><p>Answer Feedback, correct, blanks</p></mattext>
|
512
|
+
</material>
|
513
|
+
</flow_mat>
|
514
|
+
</itemfeedback>
|
515
|
+
</item>
|
516
|
+
<item ident="i61c2bf35142c25332962acd201a5bb45" title="Question 5">
|
517
|
+
<itemmetadata>
|
518
|
+
<qtimetadata>
|
519
|
+
<qtimetadatafield>
|
520
|
+
<fieldlabel>question_type</fieldlabel>
|
521
|
+
<fieldentry>multiple_answers_question</fieldentry>
|
522
|
+
</qtimetadatafield>
|
523
|
+
<qtimetadatafield>
|
524
|
+
<fieldlabel>points_possible</fieldlabel>
|
525
|
+
<fieldentry>1.0</fieldentry>
|
526
|
+
</qtimetadatafield>
|
527
|
+
<qtimetadatafield>
|
528
|
+
<fieldlabel>assessment_question_identifierref</fieldlabel>
|
529
|
+
<fieldentry>ie97a342eee8722918e009c461f367d11</fieldentry>
|
530
|
+
</qtimetadatafield>
|
531
|
+
</qtimetadata>
|
532
|
+
</itemmetadata>
|
533
|
+
<presentation>
|
534
|
+
<material>
|
535
|
+
<mattext texttype="text/html"><div><p>Multiple Answers, Correct Answers: A, B, C</p></div></mattext>
|
536
|
+
</material>
|
537
|
+
<response_lid ident="response1" rcardinality="Multiple">
|
538
|
+
<render_choice>
|
539
|
+
<response_label ident="4403">
|
540
|
+
<material>
|
541
|
+
<mattext texttype="text/plain"></mattext>
|
542
|
+
</material>
|
543
|
+
</response_label>
|
544
|
+
<response_label ident="5871">
|
545
|
+
<material>
|
546
|
+
<mattext texttype="text/plain"></mattext>
|
547
|
+
</material>
|
548
|
+
</response_label>
|
549
|
+
<response_label ident="5689">
|
550
|
+
<material>
|
551
|
+
<mattext texttype="text/plain"></mattext>
|
552
|
+
</material>
|
553
|
+
</response_label>
|
554
|
+
<response_label ident="4094">
|
555
|
+
<material>
|
556
|
+
<mattext texttype="text/html"><p>A</p></mattext>
|
557
|
+
</material>
|
558
|
+
</response_label>
|
559
|
+
<response_label ident="8128">
|
560
|
+
<material>
|
561
|
+
<mattext texttype="text/plain">B</mattext>
|
562
|
+
</material>
|
563
|
+
</response_label>
|
564
|
+
<response_label ident="1582">
|
565
|
+
<material>
|
566
|
+
<mattext texttype="text/plain">C</mattext>
|
567
|
+
</material>
|
568
|
+
</response_label>
|
569
|
+
<response_label ident="7498">
|
570
|
+
<material>
|
571
|
+
<mattext texttype="text/plain">D</mattext>
|
572
|
+
</material>
|
573
|
+
</response_label>
|
574
|
+
<response_label ident="141">
|
575
|
+
<material>
|
576
|
+
<mattext texttype="text/plain">E</mattext>
|
577
|
+
</material>
|
578
|
+
</response_label>
|
579
|
+
<response_label ident="3202">
|
580
|
+
<material>
|
581
|
+
<mattext texttype="text/plain">F</mattext>
|
582
|
+
</material>
|
583
|
+
</response_label>
|
584
|
+
</render_choice>
|
585
|
+
</response_lid>
|
586
|
+
</presentation>
|
587
|
+
<resprocessing>
|
588
|
+
<outcomes>
|
589
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
590
|
+
</outcomes>
|
591
|
+
<respcondition continue="Yes">
|
592
|
+
<conditionvar>
|
593
|
+
<other/>
|
594
|
+
</conditionvar>
|
595
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
596
|
+
</respcondition>
|
597
|
+
<respcondition continue="Yes">
|
598
|
+
<conditionvar>
|
599
|
+
<varequal respident="response1">4094</varequal>
|
600
|
+
</conditionvar>
|
601
|
+
<displayfeedback feedbacktype="Response" linkrefid="4094_fb"/>
|
602
|
+
</respcondition>
|
603
|
+
<respcondition continue="Yes">
|
604
|
+
<conditionvar>
|
605
|
+
<varequal respident="response1">8128</varequal>
|
606
|
+
</conditionvar>
|
607
|
+
<displayfeedback feedbacktype="Response" linkrefid="8128_fb"/>
|
608
|
+
</respcondition>
|
609
|
+
<respcondition continue="Yes">
|
610
|
+
<conditionvar>
|
611
|
+
<varequal respident="response1">1582</varequal>
|
612
|
+
</conditionvar>
|
613
|
+
<displayfeedback feedbacktype="Response" linkrefid="1582_fb"/>
|
614
|
+
</respcondition>
|
615
|
+
<respcondition continue="Yes">
|
616
|
+
<conditionvar>
|
617
|
+
<varequal respident="response1">7498</varequal>
|
618
|
+
</conditionvar>
|
619
|
+
<displayfeedback feedbacktype="Response" linkrefid="7498_fb"/>
|
620
|
+
</respcondition>
|
621
|
+
<respcondition continue="Yes">
|
622
|
+
<conditionvar>
|
623
|
+
<varequal respident="response1">141</varequal>
|
624
|
+
</conditionvar>
|
625
|
+
<displayfeedback feedbacktype="Response" linkrefid="141_fb"/>
|
626
|
+
</respcondition>
|
627
|
+
<respcondition continue="Yes">
|
628
|
+
<conditionvar>
|
629
|
+
<varequal respident="response1">3202</varequal>
|
630
|
+
</conditionvar>
|
631
|
+
<displayfeedback feedbacktype="Response" linkrefid="3202_fb"/>
|
632
|
+
</respcondition>
|
633
|
+
<respcondition continue="No">
|
634
|
+
<conditionvar>
|
635
|
+
<and>
|
636
|
+
<not>
|
637
|
+
<varequal respident="response1">4403</varequal>
|
638
|
+
</not>
|
639
|
+
<not>
|
640
|
+
<varequal respident="response1">5871</varequal>
|
641
|
+
</not>
|
642
|
+
<not>
|
643
|
+
<varequal respident="response1">5689</varequal>
|
644
|
+
</not>
|
645
|
+
<varequal respident="response1">4094</varequal>
|
646
|
+
<varequal respident="response1">8128</varequal>
|
647
|
+
<varequal respident="response1">1582</varequal>
|
648
|
+
<not>
|
649
|
+
<varequal respident="response1">7498</varequal>
|
650
|
+
</not>
|
651
|
+
<not>
|
652
|
+
<varequal respident="response1">141</varequal>
|
653
|
+
</not>
|
654
|
+
<not>
|
655
|
+
<varequal respident="response1">3202</varequal>
|
656
|
+
</not>
|
657
|
+
</and>
|
658
|
+
</conditionvar>
|
659
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
660
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
661
|
+
</respcondition>
|
662
|
+
<respcondition continue="Yes">
|
663
|
+
<conditionvar>
|
664
|
+
<other/>
|
665
|
+
</conditionvar>
|
666
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_incorrect_fb"/>
|
667
|
+
</respcondition>
|
668
|
+
</resprocessing>
|
669
|
+
<itemfeedback ident="general_fb">
|
670
|
+
<flow_mat>
|
671
|
+
<material>
|
672
|
+
<mattext texttype="text/html"><p>Item Feedback, Neutral</p></mattext>
|
673
|
+
</material>
|
674
|
+
</flow_mat>
|
675
|
+
</itemfeedback>
|
676
|
+
<itemfeedback ident="correct_fb">
|
677
|
+
<flow_mat>
|
678
|
+
<material>
|
679
|
+
<mattext texttype="text/html"><p>Item Feedback, Correct</p></mattext>
|
680
|
+
</material>
|
681
|
+
</flow_mat>
|
682
|
+
</itemfeedback>
|
683
|
+
<itemfeedback ident="general_incorrect_fb">
|
684
|
+
<flow_mat>
|
685
|
+
<material>
|
686
|
+
<mattext texttype="text/html"><p>Item Feedback, Incorrect</p></mattext>
|
687
|
+
</material>
|
688
|
+
</flow_mat>
|
689
|
+
</itemfeedback>
|
690
|
+
<itemfeedback ident="4094_fb">
|
691
|
+
<flow_mat>
|
692
|
+
<material>
|
693
|
+
<mattext texttype="text/html"><p>Answer Feedback, correct, A</p></mattext>
|
694
|
+
</material>
|
695
|
+
</flow_mat>
|
696
|
+
</itemfeedback>
|
697
|
+
<itemfeedback ident="8128_fb">
|
698
|
+
<flow_mat>
|
699
|
+
<material>
|
700
|
+
<mattext texttype="text/html"><p>Answer Feedback, correct, B</p></mattext>
|
701
|
+
</material>
|
702
|
+
</flow_mat>
|
703
|
+
</itemfeedback>
|
704
|
+
<itemfeedback ident="1582_fb">
|
705
|
+
<flow_mat>
|
706
|
+
<material>
|
707
|
+
<mattext texttype="text/html"><p>Answer Feedback, correct, C</p></mattext>
|
708
|
+
</material>
|
709
|
+
</flow_mat>
|
710
|
+
</itemfeedback>
|
711
|
+
<itemfeedback ident="7498_fb">
|
712
|
+
<flow_mat>
|
713
|
+
<material>
|
714
|
+
<mattext texttype="text/html"><p>Answer Feedback, incorrect, D</p></mattext>
|
715
|
+
</material>
|
716
|
+
</flow_mat>
|
717
|
+
</itemfeedback>
|
718
|
+
<itemfeedback ident="141_fb">
|
719
|
+
<flow_mat>
|
720
|
+
<material>
|
721
|
+
<mattext texttype="text/html"><p>Answer Feedback, incorrect, E</p></mattext>
|
722
|
+
</material>
|
723
|
+
</flow_mat>
|
724
|
+
</itemfeedback>
|
725
|
+
<itemfeedback ident="3202_fb">
|
726
|
+
<flow_mat>
|
727
|
+
<material>
|
728
|
+
<mattext texttype="text/html"><p>Answer Feedback, incorrect, F</p></mattext>
|
729
|
+
</material>
|
730
|
+
</flow_mat>
|
731
|
+
</itemfeedback>
|
732
|
+
</item>
|
733
|
+
<item ident="id97b6303fa7b8df7f32ac779ca3cd957" title="Question 6">
|
734
|
+
<itemmetadata>
|
735
|
+
<qtimetadata>
|
736
|
+
<qtimetadatafield>
|
737
|
+
<fieldlabel>question_type</fieldlabel>
|
738
|
+
<fieldentry>multiple_dropdowns_question</fieldentry>
|
739
|
+
</qtimetadatafield>
|
740
|
+
<qtimetadatafield>
|
741
|
+
<fieldlabel>points_possible</fieldlabel>
|
742
|
+
<fieldentry>1.0</fieldentry>
|
743
|
+
</qtimetadatafield>
|
744
|
+
<qtimetadatafield>
|
745
|
+
<fieldlabel>assessment_question_identifierref</fieldlabel>
|
746
|
+
<fieldentry>ie93978479400b81ae9408742565681ee</fieldentry>
|
747
|
+
</qtimetadatafield>
|
748
|
+
</qtimetadata>
|
749
|
+
</itemmetadata>
|
750
|
+
<presentation>
|
751
|
+
<material>
|
752
|
+
<mattext texttype="text/html"><div><p>Question 6, Multiple Dropdowns, Answers is C: [C]</p></div></mattext>
|
753
|
+
</material>
|
754
|
+
<response_lid ident="response_C">
|
755
|
+
<material>
|
756
|
+
<mattext>C</mattext>
|
757
|
+
</material>
|
758
|
+
<render_choice>
|
759
|
+
<response_label ident="520">
|
760
|
+
<material>
|
761
|
+
<mattext texttype="text/plain">C</mattext>
|
762
|
+
</material>
|
763
|
+
</response_label>
|
764
|
+
<response_label ident="9701">
|
765
|
+
<material>
|
766
|
+
<mattext texttype="text/plain">D</mattext>
|
767
|
+
</material>
|
768
|
+
</response_label>
|
769
|
+
</render_choice>
|
770
|
+
</response_lid>
|
771
|
+
</presentation>
|
772
|
+
<resprocessing>
|
773
|
+
<outcomes>
|
774
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
775
|
+
</outcomes>
|
776
|
+
<respcondition continue="Yes">
|
777
|
+
<conditionvar>
|
778
|
+
<other/>
|
779
|
+
</conditionvar>
|
780
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
781
|
+
</respcondition>
|
782
|
+
<respcondition continue="Yes">
|
783
|
+
<conditionvar>
|
784
|
+
<varequal respident="response_C">520</varequal>
|
785
|
+
</conditionvar>
|
786
|
+
<displayfeedback feedbacktype="Response" linkrefid="520_fb"/>
|
787
|
+
</respcondition>
|
788
|
+
<respcondition continue="Yes">
|
789
|
+
<conditionvar>
|
790
|
+
<varequal respident="response_C">9701</varequal>
|
791
|
+
</conditionvar>
|
792
|
+
<displayfeedback feedbacktype="Response" linkrefid="9701_fb"/>
|
793
|
+
</respcondition>
|
794
|
+
<respcondition>
|
795
|
+
<conditionvar>
|
796
|
+
<varequal respident="response_C">520</varequal>
|
797
|
+
</conditionvar>
|
798
|
+
<setvar varname="SCORE" action="Add">100.00</setvar>
|
799
|
+
</respcondition>
|
800
|
+
</resprocessing>
|
801
|
+
<itemfeedback ident="general_fb">
|
802
|
+
<flow_mat>
|
803
|
+
<material>
|
804
|
+
<mattext texttype="text/html"><p>Item Feedback, Neutral</p></mattext>
|
805
|
+
</material>
|
806
|
+
</flow_mat>
|
807
|
+
</itemfeedback>
|
808
|
+
<itemfeedback ident="correct_fb">
|
809
|
+
<flow_mat>
|
810
|
+
<material>
|
811
|
+
<mattext texttype="text/html"><p>Item Feedback, Correct</p></mattext>
|
812
|
+
</material>
|
813
|
+
</flow_mat>
|
814
|
+
</itemfeedback>
|
815
|
+
<itemfeedback ident="general_incorrect_fb">
|
816
|
+
<flow_mat>
|
817
|
+
<material>
|
818
|
+
<mattext texttype="text/html"><p>Item Feedback, Incorrect</p></mattext>
|
819
|
+
</material>
|
820
|
+
</flow_mat>
|
821
|
+
</itemfeedback>
|
822
|
+
<itemfeedback ident="520_fb">
|
823
|
+
<flow_mat>
|
824
|
+
<material>
|
825
|
+
<mattext texttype="text/html"><p>Answer Feedback, correct, C</p></mattext>
|
826
|
+
</material>
|
827
|
+
</flow_mat>
|
828
|
+
</itemfeedback>
|
829
|
+
<itemfeedback ident="9701_fb">
|
830
|
+
<flow_mat>
|
831
|
+
<material>
|
832
|
+
<mattext texttype="text/html"><p>Answer Feedback, incorrect, D</p></mattext>
|
833
|
+
</material>
|
834
|
+
</flow_mat>
|
835
|
+
</itemfeedback>
|
836
|
+
</item>
|
837
|
+
<item ident="i3846da99b022d2a347759703fc50351e" title="Question 7">
|
838
|
+
<itemmetadata>
|
839
|
+
<qtimetadata>
|
840
|
+
<qtimetadatafield>
|
841
|
+
<fieldlabel>question_type</fieldlabel>
|
842
|
+
<fieldentry>matching_question</fieldentry>
|
843
|
+
</qtimetadatafield>
|
844
|
+
<qtimetadatafield>
|
845
|
+
<fieldlabel>points_possible</fieldlabel>
|
846
|
+
<fieldentry>1.0</fieldentry>
|
847
|
+
</qtimetadatafield>
|
848
|
+
<qtimetadatafield>
|
849
|
+
<fieldlabel>assessment_question_identifierref</fieldlabel>
|
850
|
+
<fieldentry>i68c950400caeab9618bb13507a38cd05</fieldentry>
|
851
|
+
</qtimetadatafield>
|
852
|
+
</qtimetadata>
|
853
|
+
</itemmetadata>
|
854
|
+
<presentation>
|
855
|
+
<material>
|
856
|
+
<mattext texttype="text/html"><div><p>Question 7, Matching, Correct Answer A:1, B:2</p></div></mattext>
|
857
|
+
</material>
|
858
|
+
<response_lid ident="response_9770">
|
859
|
+
<material>
|
860
|
+
<mattext texttype="text/plain"></mattext>
|
861
|
+
</material>
|
862
|
+
<render_choice>
|
863
|
+
<response_label ident="182">
|
864
|
+
<material>
|
865
|
+
<mattext></mattext>
|
866
|
+
</material>
|
867
|
+
</response_label>
|
868
|
+
<response_label ident="6823">
|
869
|
+
<material>
|
870
|
+
<mattext>1</mattext>
|
871
|
+
</material>
|
872
|
+
</response_label>
|
873
|
+
<response_label ident="4469">
|
874
|
+
<material>
|
875
|
+
<mattext>2</mattext>
|
876
|
+
</material>
|
877
|
+
</response_label>
|
878
|
+
<response_label ident="1557">
|
879
|
+
<material>
|
880
|
+
<mattext>C</mattext>
|
881
|
+
</material>
|
882
|
+
</response_label>
|
883
|
+
<response_label ident="8042">
|
884
|
+
<material>
|
885
|
+
<mattext>D</mattext>
|
886
|
+
</material>
|
887
|
+
</response_label>
|
888
|
+
<response_label ident="7177">
|
889
|
+
<material>
|
890
|
+
<mattext>E</mattext>
|
891
|
+
</material>
|
892
|
+
</response_label>
|
893
|
+
<response_label ident="6875">
|
894
|
+
<material>
|
895
|
+
<mattext>F</mattext>
|
896
|
+
</material>
|
897
|
+
</response_label>
|
898
|
+
<response_label ident="9873">
|
899
|
+
<material>
|
900
|
+
<mattext>3</mattext>
|
901
|
+
</material>
|
902
|
+
</response_label>
|
903
|
+
<response_label ident="2836">
|
904
|
+
<material>
|
905
|
+
<mattext>4</mattext>
|
906
|
+
</material>
|
907
|
+
</response_label>
|
908
|
+
<response_label ident="7745">
|
909
|
+
<material>
|
910
|
+
<mattext>5</mattext>
|
911
|
+
</material>
|
912
|
+
</response_label>
|
913
|
+
</render_choice>
|
914
|
+
</response_lid>
|
915
|
+
<response_lid ident="response_7296">
|
916
|
+
<material>
|
917
|
+
<mattext texttype="text/plain"></mattext>
|
918
|
+
</material>
|
919
|
+
<render_choice>
|
920
|
+
<response_label ident="182">
|
921
|
+
<material>
|
922
|
+
<mattext></mattext>
|
923
|
+
</material>
|
924
|
+
</response_label>
|
925
|
+
<response_label ident="6823">
|
926
|
+
<material>
|
927
|
+
<mattext>1</mattext>
|
928
|
+
</material>
|
929
|
+
</response_label>
|
930
|
+
<response_label ident="4469">
|
931
|
+
<material>
|
932
|
+
<mattext>2</mattext>
|
933
|
+
</material>
|
934
|
+
</response_label>
|
935
|
+
<response_label ident="1557">
|
936
|
+
<material>
|
937
|
+
<mattext>C</mattext>
|
938
|
+
</material>
|
939
|
+
</response_label>
|
940
|
+
<response_label ident="8042">
|
941
|
+
<material>
|
942
|
+
<mattext>D</mattext>
|
943
|
+
</material>
|
944
|
+
</response_label>
|
945
|
+
<response_label ident="7177">
|
946
|
+
<material>
|
947
|
+
<mattext>E</mattext>
|
948
|
+
</material>
|
949
|
+
</response_label>
|
950
|
+
<response_label ident="6875">
|
951
|
+
<material>
|
952
|
+
<mattext>F</mattext>
|
953
|
+
</material>
|
954
|
+
</response_label>
|
955
|
+
<response_label ident="9873">
|
956
|
+
<material>
|
957
|
+
<mattext>3</mattext>
|
958
|
+
</material>
|
959
|
+
</response_label>
|
960
|
+
<response_label ident="2836">
|
961
|
+
<material>
|
962
|
+
<mattext>4</mattext>
|
963
|
+
</material>
|
964
|
+
</response_label>
|
965
|
+
<response_label ident="7745">
|
966
|
+
<material>
|
967
|
+
<mattext>5</mattext>
|
968
|
+
</material>
|
969
|
+
</response_label>
|
970
|
+
</render_choice>
|
971
|
+
</response_lid>
|
972
|
+
<response_lid ident="response_1696">
|
973
|
+
<material>
|
974
|
+
<mattext texttype="text/plain">A</mattext>
|
975
|
+
</material>
|
976
|
+
<render_choice>
|
977
|
+
<response_label ident="182">
|
978
|
+
<material>
|
979
|
+
<mattext></mattext>
|
980
|
+
</material>
|
981
|
+
</response_label>
|
982
|
+
<response_label ident="6823">
|
983
|
+
<material>
|
984
|
+
<mattext>1</mattext>
|
985
|
+
</material>
|
986
|
+
</response_label>
|
987
|
+
<response_label ident="4469">
|
988
|
+
<material>
|
989
|
+
<mattext>2</mattext>
|
990
|
+
</material>
|
991
|
+
</response_label>
|
992
|
+
<response_label ident="1557">
|
993
|
+
<material>
|
994
|
+
<mattext>C</mattext>
|
995
|
+
</material>
|
996
|
+
</response_label>
|
997
|
+
<response_label ident="8042">
|
998
|
+
<material>
|
999
|
+
<mattext>D</mattext>
|
1000
|
+
</material>
|
1001
|
+
</response_label>
|
1002
|
+
<response_label ident="7177">
|
1003
|
+
<material>
|
1004
|
+
<mattext>E</mattext>
|
1005
|
+
</material>
|
1006
|
+
</response_label>
|
1007
|
+
<response_label ident="6875">
|
1008
|
+
<material>
|
1009
|
+
<mattext>F</mattext>
|
1010
|
+
</material>
|
1011
|
+
</response_label>
|
1012
|
+
<response_label ident="9873">
|
1013
|
+
<material>
|
1014
|
+
<mattext>3</mattext>
|
1015
|
+
</material>
|
1016
|
+
</response_label>
|
1017
|
+
<response_label ident="2836">
|
1018
|
+
<material>
|
1019
|
+
<mattext>4</mattext>
|
1020
|
+
</material>
|
1021
|
+
</response_label>
|
1022
|
+
<response_label ident="7745">
|
1023
|
+
<material>
|
1024
|
+
<mattext>5</mattext>
|
1025
|
+
</material>
|
1026
|
+
</response_label>
|
1027
|
+
</render_choice>
|
1028
|
+
</response_lid>
|
1029
|
+
<response_lid ident="response_1659">
|
1030
|
+
<material>
|
1031
|
+
<mattext texttype="text/plain">A</mattext>
|
1032
|
+
</material>
|
1033
|
+
<render_choice>
|
1034
|
+
<response_label ident="182">
|
1035
|
+
<material>
|
1036
|
+
<mattext></mattext>
|
1037
|
+
</material>
|
1038
|
+
</response_label>
|
1039
|
+
<response_label ident="6823">
|
1040
|
+
<material>
|
1041
|
+
<mattext>1</mattext>
|
1042
|
+
</material>
|
1043
|
+
</response_label>
|
1044
|
+
<response_label ident="4469">
|
1045
|
+
<material>
|
1046
|
+
<mattext>2</mattext>
|
1047
|
+
</material>
|
1048
|
+
</response_label>
|
1049
|
+
<response_label ident="1557">
|
1050
|
+
<material>
|
1051
|
+
<mattext>C</mattext>
|
1052
|
+
</material>
|
1053
|
+
</response_label>
|
1054
|
+
<response_label ident="8042">
|
1055
|
+
<material>
|
1056
|
+
<mattext>D</mattext>
|
1057
|
+
</material>
|
1058
|
+
</response_label>
|
1059
|
+
<response_label ident="7177">
|
1060
|
+
<material>
|
1061
|
+
<mattext>E</mattext>
|
1062
|
+
</material>
|
1063
|
+
</response_label>
|
1064
|
+
<response_label ident="6875">
|
1065
|
+
<material>
|
1066
|
+
<mattext>F</mattext>
|
1067
|
+
</material>
|
1068
|
+
</response_label>
|
1069
|
+
<response_label ident="9873">
|
1070
|
+
<material>
|
1071
|
+
<mattext>3</mattext>
|
1072
|
+
</material>
|
1073
|
+
</response_label>
|
1074
|
+
<response_label ident="2836">
|
1075
|
+
<material>
|
1076
|
+
<mattext>4</mattext>
|
1077
|
+
</material>
|
1078
|
+
</response_label>
|
1079
|
+
<response_label ident="7745">
|
1080
|
+
<material>
|
1081
|
+
<mattext>5</mattext>
|
1082
|
+
</material>
|
1083
|
+
</response_label>
|
1084
|
+
</render_choice>
|
1085
|
+
</response_lid>
|
1086
|
+
<response_lid ident="response_8021">
|
1087
|
+
<material>
|
1088
|
+
<mattext texttype="text/plain">B</mattext>
|
1089
|
+
</material>
|
1090
|
+
<render_choice>
|
1091
|
+
<response_label ident="182">
|
1092
|
+
<material>
|
1093
|
+
<mattext></mattext>
|
1094
|
+
</material>
|
1095
|
+
</response_label>
|
1096
|
+
<response_label ident="6823">
|
1097
|
+
<material>
|
1098
|
+
<mattext>1</mattext>
|
1099
|
+
</material>
|
1100
|
+
</response_label>
|
1101
|
+
<response_label ident="4469">
|
1102
|
+
<material>
|
1103
|
+
<mattext>2</mattext>
|
1104
|
+
</material>
|
1105
|
+
</response_label>
|
1106
|
+
<response_label ident="1557">
|
1107
|
+
<material>
|
1108
|
+
<mattext>C</mattext>
|
1109
|
+
</material>
|
1110
|
+
</response_label>
|
1111
|
+
<response_label ident="8042">
|
1112
|
+
<material>
|
1113
|
+
<mattext>D</mattext>
|
1114
|
+
</material>
|
1115
|
+
</response_label>
|
1116
|
+
<response_label ident="7177">
|
1117
|
+
<material>
|
1118
|
+
<mattext>E</mattext>
|
1119
|
+
</material>
|
1120
|
+
</response_label>
|
1121
|
+
<response_label ident="6875">
|
1122
|
+
<material>
|
1123
|
+
<mattext>F</mattext>
|
1124
|
+
</material>
|
1125
|
+
</response_label>
|
1126
|
+
<response_label ident="9873">
|
1127
|
+
<material>
|
1128
|
+
<mattext>3</mattext>
|
1129
|
+
</material>
|
1130
|
+
</response_label>
|
1131
|
+
<response_label ident="2836">
|
1132
|
+
<material>
|
1133
|
+
<mattext>4</mattext>
|
1134
|
+
</material>
|
1135
|
+
</response_label>
|
1136
|
+
<response_label ident="7745">
|
1137
|
+
<material>
|
1138
|
+
<mattext>5</mattext>
|
1139
|
+
</material>
|
1140
|
+
</response_label>
|
1141
|
+
</render_choice>
|
1142
|
+
</response_lid>
|
1143
|
+
<response_lid ident="response_2030">
|
1144
|
+
<material>
|
1145
|
+
<mattext texttype="text/plain">A</mattext>
|
1146
|
+
</material>
|
1147
|
+
<render_choice>
|
1148
|
+
<response_label ident="182">
|
1149
|
+
<material>
|
1150
|
+
<mattext></mattext>
|
1151
|
+
</material>
|
1152
|
+
</response_label>
|
1153
|
+
<response_label ident="6823">
|
1154
|
+
<material>
|
1155
|
+
<mattext>1</mattext>
|
1156
|
+
</material>
|
1157
|
+
</response_label>
|
1158
|
+
<response_label ident="4469">
|
1159
|
+
<material>
|
1160
|
+
<mattext>2</mattext>
|
1161
|
+
</material>
|
1162
|
+
</response_label>
|
1163
|
+
<response_label ident="1557">
|
1164
|
+
<material>
|
1165
|
+
<mattext>C</mattext>
|
1166
|
+
</material>
|
1167
|
+
</response_label>
|
1168
|
+
<response_label ident="8042">
|
1169
|
+
<material>
|
1170
|
+
<mattext>D</mattext>
|
1171
|
+
</material>
|
1172
|
+
</response_label>
|
1173
|
+
<response_label ident="7177">
|
1174
|
+
<material>
|
1175
|
+
<mattext>E</mattext>
|
1176
|
+
</material>
|
1177
|
+
</response_label>
|
1178
|
+
<response_label ident="6875">
|
1179
|
+
<material>
|
1180
|
+
<mattext>F</mattext>
|
1181
|
+
</material>
|
1182
|
+
</response_label>
|
1183
|
+
<response_label ident="9873">
|
1184
|
+
<material>
|
1185
|
+
<mattext>3</mattext>
|
1186
|
+
</material>
|
1187
|
+
</response_label>
|
1188
|
+
<response_label ident="2836">
|
1189
|
+
<material>
|
1190
|
+
<mattext>4</mattext>
|
1191
|
+
</material>
|
1192
|
+
</response_label>
|
1193
|
+
<response_label ident="7745">
|
1194
|
+
<material>
|
1195
|
+
<mattext>5</mattext>
|
1196
|
+
</material>
|
1197
|
+
</response_label>
|
1198
|
+
</render_choice>
|
1199
|
+
</response_lid>
|
1200
|
+
<response_lid ident="response_1293">
|
1201
|
+
<material>
|
1202
|
+
<mattext texttype="text/plain">B</mattext>
|
1203
|
+
</material>
|
1204
|
+
<render_choice>
|
1205
|
+
<response_label ident="182">
|
1206
|
+
<material>
|
1207
|
+
<mattext></mattext>
|
1208
|
+
</material>
|
1209
|
+
</response_label>
|
1210
|
+
<response_label ident="6823">
|
1211
|
+
<material>
|
1212
|
+
<mattext>1</mattext>
|
1213
|
+
</material>
|
1214
|
+
</response_label>
|
1215
|
+
<response_label ident="4469">
|
1216
|
+
<material>
|
1217
|
+
<mattext>2</mattext>
|
1218
|
+
</material>
|
1219
|
+
</response_label>
|
1220
|
+
<response_label ident="1557">
|
1221
|
+
<material>
|
1222
|
+
<mattext>C</mattext>
|
1223
|
+
</material>
|
1224
|
+
</response_label>
|
1225
|
+
<response_label ident="8042">
|
1226
|
+
<material>
|
1227
|
+
<mattext>D</mattext>
|
1228
|
+
</material>
|
1229
|
+
</response_label>
|
1230
|
+
<response_label ident="7177">
|
1231
|
+
<material>
|
1232
|
+
<mattext>E</mattext>
|
1233
|
+
</material>
|
1234
|
+
</response_label>
|
1235
|
+
<response_label ident="6875">
|
1236
|
+
<material>
|
1237
|
+
<mattext>F</mattext>
|
1238
|
+
</material>
|
1239
|
+
</response_label>
|
1240
|
+
<response_label ident="9873">
|
1241
|
+
<material>
|
1242
|
+
<mattext>3</mattext>
|
1243
|
+
</material>
|
1244
|
+
</response_label>
|
1245
|
+
<response_label ident="2836">
|
1246
|
+
<material>
|
1247
|
+
<mattext>4</mattext>
|
1248
|
+
</material>
|
1249
|
+
</response_label>
|
1250
|
+
<response_label ident="7745">
|
1251
|
+
<material>
|
1252
|
+
<mattext>5</mattext>
|
1253
|
+
</material>
|
1254
|
+
</response_label>
|
1255
|
+
</render_choice>
|
1256
|
+
</response_lid>
|
1257
|
+
</presentation>
|
1258
|
+
<resprocessing>
|
1259
|
+
<outcomes>
|
1260
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
1261
|
+
</outcomes>
|
1262
|
+
<respcondition continue="Yes">
|
1263
|
+
<conditionvar>
|
1264
|
+
<other/>
|
1265
|
+
</conditionvar>
|
1266
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
1267
|
+
</respcondition>
|
1268
|
+
<respcondition>
|
1269
|
+
<conditionvar>
|
1270
|
+
<varequal respident="response_9770">182</varequal>
|
1271
|
+
</conditionvar>
|
1272
|
+
<setvar varname="SCORE" action="Add">14.29</setvar>
|
1273
|
+
</respcondition>
|
1274
|
+
<respcondition>
|
1275
|
+
<conditionvar>
|
1276
|
+
<varequal respident="response_7296">182</varequal>
|
1277
|
+
</conditionvar>
|
1278
|
+
<setvar varname="SCORE" action="Add">14.29</setvar>
|
1279
|
+
</respcondition>
|
1280
|
+
<respcondition>
|
1281
|
+
<conditionvar>
|
1282
|
+
<varequal respident="response_1696">6823</varequal>
|
1283
|
+
</conditionvar>
|
1284
|
+
<setvar varname="SCORE" action="Add">14.29</setvar>
|
1285
|
+
</respcondition>
|
1286
|
+
<respcondition>
|
1287
|
+
<conditionvar>
|
1288
|
+
<varequal respident="response_1659">6823</varequal>
|
1289
|
+
</conditionvar>
|
1290
|
+
<setvar varname="SCORE" action="Add">14.29</setvar>
|
1291
|
+
</respcondition>
|
1292
|
+
<respcondition>
|
1293
|
+
<conditionvar>
|
1294
|
+
<varequal respident="response_8021">4469</varequal>
|
1295
|
+
</conditionvar>
|
1296
|
+
<setvar varname="SCORE" action="Add">14.29</setvar>
|
1297
|
+
</respcondition>
|
1298
|
+
<respcondition>
|
1299
|
+
<conditionvar>
|
1300
|
+
<varequal respident="response_2030">6823</varequal>
|
1301
|
+
</conditionvar>
|
1302
|
+
<setvar varname="SCORE" action="Add">14.29</setvar>
|
1303
|
+
</respcondition>
|
1304
|
+
<respcondition>
|
1305
|
+
<conditionvar>
|
1306
|
+
<not>
|
1307
|
+
<varequal respident="response_2030">6823</varequal>
|
1308
|
+
</not>
|
1309
|
+
</conditionvar>
|
1310
|
+
<displayfeedback feedbacktype="Response" linkrefid="2030_fb"/>
|
1311
|
+
</respcondition>
|
1312
|
+
<respcondition>
|
1313
|
+
<conditionvar>
|
1314
|
+
<varequal respident="response_1293">4469</varequal>
|
1315
|
+
</conditionvar>
|
1316
|
+
<setvar varname="SCORE" action="Add">14.29</setvar>
|
1317
|
+
</respcondition>
|
1318
|
+
<respcondition>
|
1319
|
+
<conditionvar>
|
1320
|
+
<not>
|
1321
|
+
<varequal respident="response_1293">4469</varequal>
|
1322
|
+
</not>
|
1323
|
+
</conditionvar>
|
1324
|
+
<displayfeedback feedbacktype="Response" linkrefid="1293_fb"/>
|
1325
|
+
</respcondition>
|
1326
|
+
</resprocessing>
|
1327
|
+
<itemfeedback ident="general_fb">
|
1328
|
+
<flow_mat>
|
1329
|
+
<material>
|
1330
|
+
<mattext texttype="text/html"><p>Item Feedback, Neutral</p></mattext>
|
1331
|
+
</material>
|
1332
|
+
</flow_mat>
|
1333
|
+
</itemfeedback>
|
1334
|
+
<itemfeedback ident="correct_fb">
|
1335
|
+
<flow_mat>
|
1336
|
+
<material>
|
1337
|
+
<mattext texttype="text/html"><p>Item Feedback, Correct</p></mattext>
|
1338
|
+
</material>
|
1339
|
+
</flow_mat>
|
1340
|
+
</itemfeedback>
|
1341
|
+
<itemfeedback ident="general_incorrect_fb">
|
1342
|
+
<flow_mat>
|
1343
|
+
<material>
|
1344
|
+
<mattext texttype="text/html"><p>Item Feedback, Incorrect</p></mattext>
|
1345
|
+
</material>
|
1346
|
+
</flow_mat>
|
1347
|
+
</itemfeedback>
|
1348
|
+
<itemfeedback ident="2030_fb">
|
1349
|
+
<flow_mat>
|
1350
|
+
<material>
|
1351
|
+
<mattext texttype="text/html"><p>Answer Feedback, A:1 Chosen</p></mattext>
|
1352
|
+
</material>
|
1353
|
+
</flow_mat>
|
1354
|
+
</itemfeedback>
|
1355
|
+
<itemfeedback ident="1293_fb">
|
1356
|
+
<flow_mat>
|
1357
|
+
<material>
|
1358
|
+
<mattext texttype="text/html"><p>Answer Feedback, B:2 Chosen</p></mattext>
|
1359
|
+
</material>
|
1360
|
+
</flow_mat>
|
1361
|
+
</itemfeedback>
|
1362
|
+
</item>
|
1363
|
+
<item ident="ic72ec957ee36c87bb8774a0798ea9d2d" title="Question 8">
|
1364
|
+
<itemmetadata>
|
1365
|
+
<qtimetadata>
|
1366
|
+
<qtimetadatafield>
|
1367
|
+
<fieldlabel>question_type</fieldlabel>
|
1368
|
+
<fieldentry>numerical_question</fieldentry>
|
1369
|
+
</qtimetadatafield>
|
1370
|
+
<qtimetadatafield>
|
1371
|
+
<fieldlabel>points_possible</fieldlabel>
|
1372
|
+
<fieldentry>1.0</fieldentry>
|
1373
|
+
</qtimetadatafield>
|
1374
|
+
<qtimetadatafield>
|
1375
|
+
<fieldlabel>assessment_question_identifierref</fieldlabel>
|
1376
|
+
<fieldentry>ib9d76289bcc02bea25e74c14d2229efd</fieldentry>
|
1377
|
+
</qtimetadatafield>
|
1378
|
+
</qtimetadata>
|
1379
|
+
</itemmetadata>
|
1380
|
+
<presentation>
|
1381
|
+
<material>
|
1382
|
+
<mattext texttype="text/html"><div><p>Question 8, Numerical Answers: Exactly 42, or Between 41.5 and 42.5, or 42.00 precision 4</p></div></mattext>
|
1383
|
+
</material>
|
1384
|
+
<response_str ident="response1" rcardinality="Single">
|
1385
|
+
<render_fib fibtype="Decimal">
|
1386
|
+
<response_label ident="answer1"/>
|
1387
|
+
</render_fib>
|
1388
|
+
</response_str>
|
1389
|
+
</presentation>
|
1390
|
+
<resprocessing>
|
1391
|
+
<outcomes>
|
1392
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
1393
|
+
</outcomes>
|
1394
|
+
<respcondition continue="Yes">
|
1395
|
+
<conditionvar>
|
1396
|
+
<other/>
|
1397
|
+
</conditionvar>
|
1398
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
1399
|
+
</respcondition>
|
1400
|
+
<respcondition continue="No">
|
1401
|
+
<conditionvar>
|
1402
|
+
<or>
|
1403
|
+
<varequal respident="response1">0.0</varequal>
|
1404
|
+
<and>
|
1405
|
+
<vargte respident="response1">0.0</vargte>
|
1406
|
+
<varlte respident="response1">0.0</varlte>
|
1407
|
+
</and>
|
1408
|
+
</or>
|
1409
|
+
</conditionvar>
|
1410
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
1411
|
+
<displayfeedback feedbacktype="Response" linkrefid="9309_fb"/>
|
1412
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
1413
|
+
</respcondition>
|
1414
|
+
<respcondition continue="No">
|
1415
|
+
<conditionvar>
|
1416
|
+
<vargte respident="response1">41.5</vargte>
|
1417
|
+
<varlte respident="response1">42.5</varlte>
|
1418
|
+
</conditionvar>
|
1419
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
1420
|
+
<displayfeedback feedbacktype="Response" linkrefid="8958_fb"/>
|
1421
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
1422
|
+
</respcondition>
|
1423
|
+
<respcondition continue="No">
|
1424
|
+
<conditionvar>
|
1425
|
+
<or>
|
1426
|
+
<varequal respident="response1">42.0</varequal>
|
1427
|
+
<and>
|
1428
|
+
<vargt respident="response1">41.995</vargt>
|
1429
|
+
<varlte respident="response1">42.005</varlte>
|
1430
|
+
</and>
|
1431
|
+
</or>
|
1432
|
+
</conditionvar>
|
1433
|
+
<setvar action="Set" varname="SCORE">100</setvar>
|
1434
|
+
<displayfeedback feedbacktype="Response" linkrefid="1573_fb"/>
|
1435
|
+
<displayfeedback feedbacktype="Response" linkrefid="correct_fb"/>
|
1436
|
+
</respcondition>
|
1437
|
+
<respcondition continue="Yes">
|
1438
|
+
<conditionvar>
|
1439
|
+
<other/>
|
1440
|
+
</conditionvar>
|
1441
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_incorrect_fb"/>
|
1442
|
+
</respcondition>
|
1443
|
+
</resprocessing>
|
1444
|
+
<itemfeedback ident="general_fb">
|
1445
|
+
<flow_mat>
|
1446
|
+
<material>
|
1447
|
+
<mattext texttype="text/html"><p>Item Feedback, Neutral</p></mattext>
|
1448
|
+
</material>
|
1449
|
+
</flow_mat>
|
1450
|
+
</itemfeedback>
|
1451
|
+
<itemfeedback ident="correct_fb">
|
1452
|
+
<flow_mat>
|
1453
|
+
<material>
|
1454
|
+
<mattext texttype="text/html"><p>Item Feedback, Correct</p></mattext>
|
1455
|
+
</material>
|
1456
|
+
</flow_mat>
|
1457
|
+
</itemfeedback>
|
1458
|
+
<itemfeedback ident="general_incorrect_fb">
|
1459
|
+
<flow_mat>
|
1460
|
+
<material>
|
1461
|
+
<mattext texttype="text/html"><p>Item Feedback, Incorrect</p></mattext>
|
1462
|
+
</material>
|
1463
|
+
</flow_mat>
|
1464
|
+
</itemfeedback>
|
1465
|
+
<itemfeedback ident="9309_fb">
|
1466
|
+
<flow_mat>
|
1467
|
+
<material>
|
1468
|
+
<mattext texttype="text/html"><p>Answer Feedback, 42, exact</p></mattext>
|
1469
|
+
</material>
|
1470
|
+
</flow_mat>
|
1471
|
+
</itemfeedback>
|
1472
|
+
<itemfeedback ident="8958_fb">
|
1473
|
+
<flow_mat>
|
1474
|
+
<material>
|
1475
|
+
<mattext texttype="text/html"><p>Answer Feedback, 41.5-42.5, range</p></mattext>
|
1476
|
+
</material>
|
1477
|
+
</flow_mat>
|
1478
|
+
</itemfeedback>
|
1479
|
+
<itemfeedback ident="1573_fb">
|
1480
|
+
<flow_mat>
|
1481
|
+
<material>
|
1482
|
+
<mattext texttype="text/html"><p>Answer Feedback, 42.00, precision 4</p></mattext>
|
1483
|
+
</material>
|
1484
|
+
</flow_mat>
|
1485
|
+
</itemfeedback>
|
1486
|
+
</item>
|
1487
|
+
<item ident="i671f685f8d3902befa38c673d4a58c70" title="Question 9">
|
1488
|
+
<itemmetadata>
|
1489
|
+
<qtimetadata>
|
1490
|
+
<qtimetadatafield>
|
1491
|
+
<fieldlabel>question_type</fieldlabel>
|
1492
|
+
<fieldentry>calculated_question</fieldentry>
|
1493
|
+
</qtimetadatafield>
|
1494
|
+
<qtimetadatafield>
|
1495
|
+
<fieldlabel>points_possible</fieldlabel>
|
1496
|
+
<fieldentry>1.0</fieldentry>
|
1497
|
+
</qtimetadatafield>
|
1498
|
+
<qtimetadatafield>
|
1499
|
+
<fieldlabel>assessment_question_identifierref</fieldlabel>
|
1500
|
+
<fieldentry>ibf111a9c7554ff077b96e15be523119f</fieldentry>
|
1501
|
+
</qtimetadatafield>
|
1502
|
+
</qtimetadata>
|
1503
|
+
</itemmetadata>
|
1504
|
+
<presentation>
|
1505
|
+
<material>
|
1506
|
+
<mattext texttype="text/html"><div><p>Formula, Answer is 42. [x]</p></div></mattext>
|
1507
|
+
</material>
|
1508
|
+
<response_str ident="response1" rcardinality="Single">
|
1509
|
+
<render_fib fibtype="Decimal">
|
1510
|
+
<response_label ident="answer1"/>
|
1511
|
+
</render_fib>
|
1512
|
+
</response_str>
|
1513
|
+
</presentation>
|
1514
|
+
<resprocessing>
|
1515
|
+
<outcomes>
|
1516
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
1517
|
+
</outcomes>
|
1518
|
+
<respcondition continue="Yes">
|
1519
|
+
<conditionvar>
|
1520
|
+
<other/>
|
1521
|
+
</conditionvar>
|
1522
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
1523
|
+
</respcondition>
|
1524
|
+
<respcondition title="correct">
|
1525
|
+
<conditionvar>
|
1526
|
+
<other/>
|
1527
|
+
</conditionvar>
|
1528
|
+
<setvar varname="SCORE" action="Set">100</setvar>
|
1529
|
+
</respcondition>
|
1530
|
+
<respcondition title="incorrect">
|
1531
|
+
<conditionvar>
|
1532
|
+
<not>
|
1533
|
+
<other/>
|
1534
|
+
</not>
|
1535
|
+
</conditionvar>
|
1536
|
+
<setvar varname="SCORE" action="Set">0</setvar>
|
1537
|
+
</respcondition>
|
1538
|
+
<respcondition continue="Yes">
|
1539
|
+
<conditionvar>
|
1540
|
+
<other/>
|
1541
|
+
</conditionvar>
|
1542
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_incorrect_fb"/>
|
1543
|
+
</respcondition>
|
1544
|
+
</resprocessing>
|
1545
|
+
<itemproc_extension>
|
1546
|
+
<calculated>
|
1547
|
+
<answer_tolerance>0</answer_tolerance>
|
1548
|
+
<formulas decimal_places="0">
|
1549
|
+
<formula>42</formula>
|
1550
|
+
</formulas>
|
1551
|
+
<vars>
|
1552
|
+
<var name="x" scale="0">
|
1553
|
+
<min>1.0</min>
|
1554
|
+
<max>10.0</max>
|
1555
|
+
</var>
|
1556
|
+
</vars>
|
1557
|
+
<var_sets>
|
1558
|
+
<var_set ident="4648">
|
1559
|
+
<var name="x">5</var>
|
1560
|
+
<answer>42.0</answer>
|
1561
|
+
</var_set>
|
1562
|
+
<var_set ident="5679">
|
1563
|
+
<var name="x">10</var>
|
1564
|
+
<answer>42.0</answer>
|
1565
|
+
</var_set>
|
1566
|
+
<var_set ident="4249">
|
1567
|
+
<var name="x">2</var>
|
1568
|
+
<answer>42.0</answer>
|
1569
|
+
</var_set>
|
1570
|
+
<var_set ident="9671">
|
1571
|
+
<var name="x">9</var>
|
1572
|
+
<answer>42.0</answer>
|
1573
|
+
</var_set>
|
1574
|
+
<var_set ident="1564">
|
1575
|
+
<var name="x">7</var>
|
1576
|
+
<answer>42.0</answer>
|
1577
|
+
</var_set>
|
1578
|
+
<var_set ident="5542">
|
1579
|
+
<var name="x">3</var>
|
1580
|
+
<answer>42.0</answer>
|
1581
|
+
</var_set>
|
1582
|
+
<var_set ident="7288">
|
1583
|
+
<var name="x">1</var>
|
1584
|
+
<answer>42.0</answer>
|
1585
|
+
</var_set>
|
1586
|
+
<var_set ident="9738">
|
1587
|
+
<var name="x">6</var>
|
1588
|
+
<answer>42.0</answer>
|
1589
|
+
</var_set>
|
1590
|
+
<var_set ident="7745">
|
1591
|
+
<var name="x">8</var>
|
1592
|
+
<answer>42.0</answer>
|
1593
|
+
</var_set>
|
1594
|
+
<var_set ident="8661">
|
1595
|
+
<var name="x">6</var>
|
1596
|
+
<answer>42.0</answer>
|
1597
|
+
</var_set>
|
1598
|
+
</var_sets>
|
1599
|
+
</calculated>
|
1600
|
+
</itemproc_extension>
|
1601
|
+
<itemfeedback ident="general_fb">
|
1602
|
+
<flow_mat>
|
1603
|
+
<material>
|
1604
|
+
<mattext texttype="text/html"><p>Item Feedback, Neutral</p></mattext>
|
1605
|
+
</material>
|
1606
|
+
</flow_mat>
|
1607
|
+
</itemfeedback>
|
1608
|
+
<itemfeedback ident="correct_fb">
|
1609
|
+
<flow_mat>
|
1610
|
+
<material>
|
1611
|
+
<mattext texttype="text/html"><p>Item Feedback, Correct</p></mattext>
|
1612
|
+
</material>
|
1613
|
+
</flow_mat>
|
1614
|
+
</itemfeedback>
|
1615
|
+
<itemfeedback ident="general_incorrect_fb">
|
1616
|
+
<flow_mat>
|
1617
|
+
<material>
|
1618
|
+
<mattext texttype="text/html"><p>Item Feedback, Incorrect</p></mattext>
|
1619
|
+
</material>
|
1620
|
+
</flow_mat>
|
1621
|
+
</itemfeedback>
|
1622
|
+
</item>
|
1623
|
+
<item ident="ia926602fb1321f38727fa3e2785c71ea" title="Question 10">
|
1624
|
+
<itemmetadata>
|
1625
|
+
<qtimetadata>
|
1626
|
+
<qtimetadatafield>
|
1627
|
+
<fieldlabel>question_type</fieldlabel>
|
1628
|
+
<fieldentry>essay_question</fieldentry>
|
1629
|
+
</qtimetadatafield>
|
1630
|
+
<qtimetadatafield>
|
1631
|
+
<fieldlabel>points_possible</fieldlabel>
|
1632
|
+
<fieldentry>1.0</fieldentry>
|
1633
|
+
</qtimetadatafield>
|
1634
|
+
<qtimetadatafield>
|
1635
|
+
<fieldlabel>assessment_question_identifierref</fieldlabel>
|
1636
|
+
<fieldentry>i959c792a2132947c12cd51d6cdf67252</fieldentry>
|
1637
|
+
</qtimetadatafield>
|
1638
|
+
</qtimetadata>
|
1639
|
+
</itemmetadata>
|
1640
|
+
<presentation>
|
1641
|
+
<material>
|
1642
|
+
<mattext texttype="text/html"><div><p>Question 10, Essay</p></div></mattext>
|
1643
|
+
</material>
|
1644
|
+
<response_str ident="response1" rcardinality="Single">
|
1645
|
+
<render_fib>
|
1646
|
+
<response_label ident="answer1" rshuffle="No"/>
|
1647
|
+
</render_fib>
|
1648
|
+
</response_str>
|
1649
|
+
</presentation>
|
1650
|
+
<resprocessing>
|
1651
|
+
<outcomes>
|
1652
|
+
<decvar maxvalue="100" minvalue="0" varname="SCORE" vartype="Decimal"/>
|
1653
|
+
</outcomes>
|
1654
|
+
<respcondition continue="Yes">
|
1655
|
+
<conditionvar>
|
1656
|
+
<other/>
|
1657
|
+
</conditionvar>
|
1658
|
+
<displayfeedback feedbacktype="Response" linkrefid="general_fb"/>
|
1659
|
+
</respcondition>
|
1660
|
+
<respcondition continue="No">
|
1661
|
+
<conditionvar>
|
1662
|
+
<other/>
|
1663
|
+
</conditionvar>
|
1664
|
+
</respcondition>
|
1665
|
+
</resprocessing>
|
1666
|
+
<itemfeedback ident="general_fb">
|
1667
|
+
<flow_mat>
|
1668
|
+
<material>
|
1669
|
+
<mattext texttype="text/html"><p>Item Feedback, Neutral</p></mattext>
|
1670
|
+
</material>
|
1671
|
+
</flow_mat>
|
1672
|
+
</itemfeedback>
|
1673
|
+
</item>
|
1674
|
+
</section>
|
1675
|
+
</assessment>
|
1676
|
+
</questestinterop>
|