// this file is copyright - Mike Capstick   
// it adds the quiz questions and answers 
//  total number of questions in this test  
 maxterms=15
// Initialise question and answer  arrays and question number
  stemarray=new Array(maxterms)
  answer=new Array(maxterms)
  adistract=new Array(maxterms)
  bdistract=new Array(maxterms)
  cdistract=new Array(maxterms)
  ddistract=new Array(maxterms)
// load  arrays with a set of questions and  answers 
 stemarray[0] ='Which Caribbean island is a member of the British Commonwealth?' 
 answer[0] ='D' 
 adistract[0] ='Bonaire ' 
 bdistract[0] ='Martinique' 
 cdistract[0] ='Aruba' 
 ddistract[0] ='Antiqua' 
 stemarray[1] ='Which Caribbean island is a member of the Netherlands Antilles?' 
 answer[1] ='A' 
 adistract[1] ='Curacao' 
 bdistract[1] ='Dominica' 
 cdistract[1] ='Martinique' 
 ddistract[1] ='Barbados' 
 stemarray[2] ='Which Caribbean island is a region of France?' 
 answer[2] ='C' 
 adistract[2] ='Curacao' 
 bdistract[2] ='Antiqua' 
 cdistract[2] ='Guadeloupe ' 
 ddistract[2] ='Barbados' 
 stemarray[3] ='Which Caribbean island is a territory of the United States?' 
 answer[3] ='A' 
 adistract[3] ='St. Thomas' 
 bdistract[3] ='St. Maarten' 
 cdistract[3] ='St. Lucia ' 
 ddistract[3] ='St. Kitts' 
 stemarray[4] ='Which Caribbean island is a member of the British Commonwealth?' 
 answer[4] ='C' 
 adistract[4] ='St. Thomas' 
 bdistract[4] ='St. Maarten' 
 cdistract[4] ='St. Lucia ' 
 ddistract[4] ='St. Croix' 
 stemarray[5] ='Which Caribbean island is a Commonwealth of the United States?' 
 answer[5] ='A' 
 adistract[5] ='Puerto Rico' 
 bdistract[5] ='St. Thomas' 
 cdistract[5] ='Barbados' 
 ddistract[5] ='Aruba' 
 stemarray[6] ='What is the official language on Martinique?' 
 answer[6] ='D' 
 adistract[6] ='Dutch ' 
 bdistract[6] ='English' 
 cdistract[6] ='Spanish' 
 ddistract[6] ='French' 
 stemarray[7] ='What is the official language on Barbados?' 
 answer[7] ='A' 
 adistract[7] ='English' 
 bdistract[7] ='French' 
 cdistract[7] ='Spanish' 
 ddistract[7] ='Dutch' 
 stemarray[8] ='What is the official language on Jamaica?' 
 answer[8] ='D' 
 adistract[8] ='Spanish' 
 bdistract[8] ='German' 
 cdistract[8] ='French' 
 ddistract[8] ='English' 
 stemarray[9] ='Which Caribbean country is an independent nation?' 
 answer[9] ='B' 
 adistract[9] ='Cayman Islands' 
 bdistract[9] ='Haiti' 
 cdistract[9] ='St. Marten' 
 ddistract[9] ='Turks & Caicos Islands' 
 stemarray[10] ='What is the official language of Aruba?' 
 answer[10] ='C' 
 adistract[10] ='French' 
 bdistract[10] ='English' 
 cdistract[10] ='Dutch' 
 ddistract[10] ='Spanish' 
 stemarray[11] ='Which Caribbean island is divided between the French and the Dutch?' 
 answer[11] ='D' 
 adistract[11] ='Haiti & the Dominican Republic' 
 bdistract[11] ='Trinidad & Tobago' 
 cdistract[11] ='St. Thomas & St. Croix' 
 ddistract[11] ='St. Martin & St. Maarten' 
 stemarray[12] ='Which Caribbean island is in the British Virgin Islands?' 
 answer[12] ='B' 
 adistract[12] ='St. Lucia' 
 bdistract[12] ='Tortola' 
 cdistract[12] ='Jamaica' 
 ddistract[12] ='Puerto Rico' 
 stemarray[13] ='Which is the largest Caribbean island?' 
 answer[13] ='C' 
 adistract[13] ='Haiti' 
 bdistract[13] ='Jamaica' 
 cdistract[13] ='Cuba' 
 ddistract[13] ='Puerto Rico' 
 stemarray[14] ='What is the official language of the Bahamas?' 
 answer[14] ='C' 
 adistract[14] ='Spanish' 
 bdistract[14] ='French' 
 cdistract[14] ='English' 
 ddistract[14] ='Dutch' 
