rrect"/> </assessmentItem>
4.3. associateInteraction (Câu hỏi tương tác kết hợp)
Là loại câu hỏi trắc nghiệm kết nối nhiều lựa chọn. Câu hỏi loại này nhiều lựa chọn, nhiệm vụ của thí sinh là nối một lựa chọn với các lựa chọn khác có liên quan. Các lựa chọn này gọi là các simpleAssociableChoice.
• Ví dụ:
Hình 1.14: Ví dụ về câu hỏi associateInteraction
• File XML mô tả câu hỏi associateInteraction theo chuẩn IMS QTI: <?xml version="1.0" encoding="UTF-8"?>
<assessmentItem xmlns="http://www.imsglobal.org/xsd/imsqti_v2p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.imsglobal.org/xsd/imsqti_v2p0 imsqti_v2p0.xsd"
identifier="associate" title="Shakespearian Rivals" adaptive="false" timeDependent="false">
<responseDeclaration identifier="RESPONSE" cardinality="multiple" baseType="pair"> <correctResponse> <value>A P</value> <value>C M</value> <value>D L</value> </correctResponse>
<mapping defaultValue="0">
<mapEntry mapKey="A P" mappedValue="2"/> <mapEntry mapKey="C M" mappedValue="1"/> <mapEntry mapKey="D L" mappedValue="1"/> </mapping>
</responseDeclaration>
<outcomeDeclaration identifier="SCORE" cardinality="single" baseType="float"/>
<itemBody>
<associateInteraction responseIdentifier="RESPONSE" shuffle="true" maxAssociations="3">
<prompt>Hidden in this list of characters from famous Shakespeare plays are three pairs
of rivals. Can you match each character to his adversary? </prompt> <simpleAssociableChoice identifier="A" matchMax="1">Antonio</simpleAssociableChoice> <simpleAssociableChoice identifier="C" matchMax="1">Capulet</simpleAssociableChoice> <simpleAssociableChoice identifier="D" matchMax="1">Demetrius</simpleAssociableChoice> <simpleAssociableChoice identifier="L" matchMax="1">Lysander</simpleAssociableChoice> <simpleAssociableChoice identifier="M" matchMax="1">Montague</simpleAssociableChoice> <simpleAssociableChoice identifier="P" matchMax="1">Prospero</simpleAssociableChoice> </associateInteraction> </itemBody> <responseProcessing template="http://www.imsglobal.org/question/qti_v2p0/rptemplates/map_resp onse"/> </assessmentItem>
4.4. matchInteraction (Câu hỏi ghép cặp)
Câu hỏi loại này có 2 cột các phương án trả lời được đặt đứng cạnh nhau, nhiệm vụ của thí sinh là nối các phương án của cột này với một hay nhiều phương án có liên quan ở cột bên cạnh. Loại câu hỏi này khác với loại associateInteraction ở chỗ: trong loại này, một phương án trả lời không được phép tạo liên kết với 1 phương án khác trong cùng cột, trong khi loại associateInteraction thì cho phép. Trong câu hỏi sẽ có 2 cột phương án trả lời gọi là 2 simpleMatchSet, mỗi simpleMatchSet chứa nhiều simpleAssociableChoice.
Hình 1.15: Ví dụ về câu hỏi matchInteraction