<?xml version="1.0" encoding="UTF-8"?>
<question type="OPTION">

  <text>
    <p>Here goes the question.</p>
    <p>You can use <i>any</i> html in most blocks.</p>
  </text>

  <hint mintries="1">
    This is the first hint, it comes up after the first incorrect answer.
  </hint>
  <hint mintries="2" maxtries="3">
    This is the second hint, it comes up after the second and third incorrect
    answer and disappears again at the fourth.
  </hint>
  <hint mintries="3">
    You can have as many hints as you like.
  </hint>


  <option correct="0">
    <choice>Option 1.</choice>
    <feedback>Feedback for option one.</feedback>
    <feedback mintries="2" maxtries="3">
      This feedback item is shown when option 1 is selected at the second or
      third try.
    </feedback>
  </option>

  <option correct="1">
    <choice>Option 2.</choice>
    <feedback>
      <b>Yes</b>, option two is correct!
      <br/>
      the correct="1" attributed indicated this. There can be more than 
      one correct option.
    </feedback>
  </option>

  <option correct="0">
    <choice>Option 3.</choice>
    <feedback>Nope, option three is not correct.</feedback>
  </option>

</question>