◇◆
<question-wrap-group> Question Wrapper Group
A container element used to hold a group of
<question-wrap> elements, for example, when
all the questions share a common preamble (setup).
Usage/Remarks
This is not the model for a full quiz, test, exam, etc., but such a model could be
built using these components.
Models and Context
May be contained in
<abstract>, <ack>, <answer>, <app>, <app-group>, <bio>, <body>, <book-app-group>, <boxed-text>, <disp-quote>, <explanation>, <glossary>, <index>, <index-div>, <index-group>, <license-p>, <named-book-part-body>, <named-content>, <notes>, <option>, <p>, <question>, <question-preamble>, <ref-list>, <sec>, <styled-content>, <td>, <th>, <toc>, <toc-div>, <toc-entry>, <toc-group>, <trans-abstract>
Description
The following, in order:
- <object-id> Object Identifier, zero or more
- <label> Label (of an Equation, Figure, Reference, etc.), zero or one
- <title> Title, zero or one
- <subtitle> Document Subtitle, zero or more
- <alt-title> Alternate Title, zero or more
- <question-preamble> Question Preamble, zero or one
- <question-wrap> Question Wrapper, one or more
Content Model
<!ELEMENT question-wrap-group %question-wrap-group-model; >
Expanded Content Model
((object-id)*, label?, title?, subtitle*, alt-title*, question-preamble?, (question-wrap)+)
Tagged Sample
Question <question-preamble> with multiple questions
...
<question-wrap-group>
<question-preamble>
<p>Directions: Read the selection. Use the selection to answer
questions 1 — 4.</p>
<disp-quote>
<p>John Herschel Glenn, Jr. (born July 18, 1921) is a former
U.S. Marine Corps aviator, engineer, astronaut and United States
senator. He was ...</p>
...
</disp-quote>
</question-preamble>
<question-wrap>
<question id="q1" question-response-type="multiple-choice">
<label>1</label>
<p>In the selection, what does the word concussion mean?</p>
<option correct="no"><label>A</label>
<p>Judgement or decision reached by reasoning</p></option>
<option correct="yes"><label>B</label>
<p>Injury caused by a blow to the head</p></option>
<option correct="no"><label>C</label>
<p>Broken elbow</p></option>
</question>
</question-wrap>
<question-wrap>
<question id="q2" question-response-type="true-false">
<label>2</label>
<p>John Glenn was older than Georgy Beregovoy.</p>
</question>
<answer pointer-to-question="q2" id="ans2">
<p>false</p></answer>
</question-wrap>
...
</question-wrap-group>
...