<?xml version="1.0"?>
<!DOCTYPE quiz [
	<!ELEMENT quiz (title, items)>
	<!ELEMENT title (#PCDATA)>
	<!ELEMENT items (item)+>	
	<!ELEMENT item (question, answer, answer+)>
	<!ELEMENT question (#PCDATA)>
	<!ELEMENT answer (#PCDATA)>
	<!ATTLIST answer correct (y) #IMPLIED>
]>
<quiz>
	<title>The Benefits IQ Quiz</title>
	<items>
		<item>
			<question>Which of the following is NOT a type of health insurance plan?</question>
			<answer>Health Maintenance Organization (HMO)</answer>
			<answer>Point of Service (POS)</answer>
			<answer correct="y">Health Services Selection (HSS)</answer>
           		<answer>Preferred Provider Organization (PPO)</answer>
		</item>
		
		<item>
			<question>True or False:  The majority of insured Americans receive health insurance coverage through their employer or their spouse's employer.</question>
			<answer correct="y">True</answer>
			<answer>False</answer>
		</item>
		
		<item>
			<question>True or False:  A 55-year-old retiring today will need about $21,000 for health insurance premiums plus out-of-pocket expenses before Medicare. </question>
			<answer>True</answer>
			<answer correct="y">False</answer>
		</item>
		
		<item>
			<question>All of the following life events allow you to make changes to your health insurance, except:</question>
			<answer>Getting married</answer>
			<answer>Having a baby</answer>
			<answer correct="y">Having a birthday</answer>
			<answer>Changing jobs</answer>
		</item>
		
		<item>
			<question>The period of time, often in the fall, when you can make choices regarding your benefits for the following year.</question>
			<answer>Open access</answer>
			<answer>Managed care</answer>
			<answer>Length of stay</answer>
			<answer correct="y">Open enrollment</answer>
			
		</item>		
	</items>
</quiz>
