// this file is copyright - Mike Capstick   
// it adds the quiz questions and answers 
//  total number of questions in this test  
 maxterms=10
// 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] ='What angle measures less than 90 degrees?' 
 answer[0] ='A' 
 adistract[0] ='acute' 
 bdistract[0] ='obtuse' 
 cdistract[0] ='right' 
 ddistract[0] ='straight' 
 stemarray[1] ='What is formed by two rays with the same endpoint?' 
 answer[1] ='C' 
 adistract[1] ='rectangle' 
 bdistract[1] ='triangle' 
 cdistract[1] ='angle' 
 ddistract[1] ='plane' 
 stemarray[2] ='What type of triangle has all sides of equal length?' 
 answer[2] ='D' 
 adistract[2] ='pyramid' 
 bdistract[2] ='isosceles Trangle' 
 cdistract[2] ='obtuse Triangle' 
 ddistract[2] ='equilateral Triangle' 
 stemarray[3] ='what type of angle has an angle greater than 90 degrees but less than 180.' 
 answer[3] ='B' 
 adistract[3] ='right' 
 bdistract[3] ='obtuse' 
 cdistract[3] ='acute' 
 ddistract[3] ='scalene' 
 stemarray[4] ='An Isosceles triangle has how many sides of equal length?' 
 answer[4] ='D' 
 adistract[4] ='none' 
 bdistract[4] ='3' 
 cdistract[4] ='1' 
 ddistract[4] ='2' 
 stemarray[5] ='An angle that is equal to 90 degrees is called a' 
 answer[5] ='C' 
 adistract[5] ='scalene angle' 
 bdistract[5] ='acute angle' 
 cdistract[5] ='right angle' 
 ddistract[5] ='straight angle' 
 stemarray[6] ='What type of triangle has only one angle of greater than 90 degrees and less than 180 degrees.' 
 answer[6] ='A' 
 adistract[6] ='obtuse' 
 bdistract[6] ='isoscelese' 
 cdistract[6] ='acute' 
 ddistract[6] ='equilateral' 
 stemarray[7] ='What type of triangle has all acute angles?' 
 answer[7] ='C' 
 adistract[7] ='isosceles' 
 bdistract[7] ='obtuse' 
 cdistract[7] ='acute' 
 ddistract[7] ='right' 
 stemarray[8] ='What type of angle is equal to 180 derees?' 
 answer[8] ='D' 
 adistract[8] ='circle' 
 bdistract[8] ='obtuse' 
 cdistract[8] ='right' 
 ddistract[8] ='straight' 
 stemarray[9] ='What type of triangle has no equal sides?' 
 answer[9] ='A' 
 adistract[9] ='scalene' 
 bdistract[9] ='obtuse' 
 cdistract[9] ='right' 
 ddistract[9] ='acute' 
