question-response-type Type of Answer(s) to be Given to the Question

Used to mark a question as taking a particular type of answer or set of answers, for example, “multiple-choice” or “essay”.
OPTIONAL on element: <question>
Value Meaning
essay The answer to this question requires a longer written answer from the student.
fill-in-the-blank The answer to this question is a medium-length written answer, typically a phrase or sentence.
multi-select There are several option choices presented as responses to this question, and the student must select one or more.
multiple-choice There are several option choices presented as responses to this question, and the student must select one.
short-answer The answer to this question is a short-length written answer, typically a word or very short phrase or sentence.
true-false For the answer to this question, the student must choose between “true” and “false”.
Restriction @question-response-type is an optional attribute; there is no default.
Tagged Samples
Multiple choice with options
...
<question id="q2" question-response-type="multiple-choice">
 <p>Where was the first permanent English
  settlement in the New World?</p>
 <option correct="no">
  <label>A</label>
  <p>Plymouth</p>
 </option>
 <option correct="yes" id="q2b">
  <label>B</label>
  <p>Jamestown</p>
 </option>
 ...
</question>
...
True/False with answer and explanation
...
<question-wrap>
 <question id="q3" question-response-type="true-false">
  <p>Peregrine White was the first English child born in 
   North America.</p>
  <answer pointer-to-question="q3" id="ans3">
   <p>False</p></answer>
 </question>
 <explanation pointer-to-explained="ans3">...</explanation>
</question-wrap>
...