// this file is copyright - Mike Capstick
// it adds the quiz questions and answers 
// load  arrays with a set of questions and  answers 
maxterms=6
timerflag=1;
questions=new Array();
 questions[1] ='Table~Stores data about a particular entity or object and is the chief structure in any database';
 questions[2] ='Field~A fact about an Entity. It represents an attribute of an entity and is used to store data in the database e.g. each item on form';
 questions[3] ='Information~Data that has been suitably formatted.';
 questions[4] ='Primary Key~A field that uniquely identifies each record.';
 questions[5] ='Foreign Key~A field that provides a link to a Primary Key in a related table';
 questions[6] ='Record~The data or group of fields about an entity e.g. a completed form';
 