Moodle XML 实际支持的其它题型

来自汉语教学技术研究与应用
HanyuTech讨论 | 贡献2018年6月9日 (六) 21:50的版本 (创建页面,内容为“{{DISPLAYTITLE:Moodle XML 实际支持的其它题型}} 在帮助文档列出的题型之外,Moodle XML还支持两类题型 {| class="wikitable" |- ! 题型 !!…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)


在帮助文档列出的题型之外,Moodle XML还支持两类题型

题型 Moodle XML 名称 Moodle 题库中的英文名称
选词填空题 gapselect Select missing words
拖放填空题 ddwtos Drag and drop into text


选词填空题

  <question type="gapselect">
    <name>
      <text>【题目类型】</text>
    </name>
    <questiontext format="moodle_auto_format">
      <text>【题目类型】题干</text>
    </questiontext>
    <defaultgrade>1.0000000</defaultgrade>
    <shuffleanswers>1</shuffleanswers> 
    <selectoption>
      <text>选项1</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>选项2</text>
      <group>1</group>
    </selectoption>
    <selectoption>
      <text>选项3</text>
      <group>2</group>
    </selectoption>
    <selectoption>
      <text>选项4</text>
      <group>选项2</group>
    </selectoption>  
  </question>


拖放填空题

    <question type="ddwtos">
    <name>
      <text>【题目类型】</text>
    </name>
    <questiontext format="moodle_auto_format">
      <text>【题目类型】题干
    </questiontext>
    <shuffleanswers>1</shuffleanswers>
    <dragbox>
      <text>选项1</text>
      <group>1</group>
    </dragbox>
    <dragbox>
      <text>选项2</text>
      <group>1</group>
    </dragbox>
    <dragbox>
      <text>选项3</text>
      <group>1</group>
    </dragbox>
    <dragbox>
      <text>选项4</text>
      <group>1</group>
    </dragbox>
    <dragbox>
      <text>选项5</text>
      <group>1</group>
    </dragbox>
  </question>