// Total number of question in Ex3a,
// Getting the Most out of the Lecturers
var TotalNoOfQuestions = 7;

// The options
var optionValues = new Array('1', '2', '3');


// Total number of options in each question
var TotalNoOfOptions = optionValues.length; 


// an array that stores the results of each question 
var result =  new Array(TotalNoOfQuestions);


// Questions
var Question = new Array(TotalNoOfQuestions);

// Question 1
	Question[0] = "<ul><li> Read about the next lecture topic.</li></ul>";
	
// Question 2
	Question[1] = "<ul><li>Write down some questions about the topic you just read.</li></ul>";

// Question 3
	Question[2] = "<ul><li>Pay attention to what your professor discusses.</li></ul>";
	
// Question 4
	Question [3] = "<ul><li>Think about the points presented by your professor. DON'T just copy notes.</li></ul>";

//Question 5
	Question[4] = "<ul><li>Raise questions when appropriate during the lecture.</li></ul>";
	
// Question 6
	Question[5] = "<ul><li> Review your notes and mark down some questions about:<ul><li>Concepts you do not understand; </li><li>Topics you want to know more about which are not covered in the lecture.</li></ul></li></ul>";
	
// Question 7
	Question[6] = "<ul><li> Read up on some references that will supplement the lecture.</li></ul>";
	



// Total number of categories in this question set
var TotalNoOfCategory  = 3;

var Category = new Array(TotalNoOfCategory);

// Category 1
	Category[0] = "Before a lecture ...";
	
// Category 2
	Category[1] = "During a lecture ...";

// Category 3
	Category[2] = "After a lecture ...";


// Total number of Hits in this question set
var TotalNoOfHits = TotalNoOfCategory;

var hits = new Array(TotalNoOfHits);

// Hits 1
	hits[0] = "so that you can <br><ul><li>get motivated</li><li>learn to think</li></ul>";
	
// Hits 2
	hits[1] = "so that you can <br><ul><li>get new knowledge</li><li>get deeper understanding</li></ul>";
	
// Hits 3
	hits[2] = "so that you can <br><ul><li>get motivated</li><li>think more about the new knowledge</li></ul>";
	
	
	
	
		

// Total number of question(s) within each	Category
var QuestionCategory = new Array(TotalNoOfCategory);

// Total number of question(s) in Category[0] - Category 1
	QuestionCategory[0] = 2;

// Total number of question(s) in Category[1] - Category 2
	QuestionCategory[1] = 3;
	
// Total number of question(s) in Category[2]  - Category 3
	QuestionCategory[2] = 2;
	
	
	
	
// Which question should belongs to which category	
var QuestionType = new Array(TotalNoOfQuestions);

//e.g. Question 1 is belong to category 0

// Question 1 is belongs to 
	QuestionType[0] = 0;
// Question  2 is belongs to 	
	QuestionType[1] = 0;
	
// Question  3 is belongs to 
	QuestionType[2] = 1;
	
// Question  4 is belongs to 
	QuestionType[3] = 1;
	
// Question  5 is belongs to 
	QuestionType[4] = 1;
	
// Question  6 is belongs to 
	QuestionType[5] = 2;
	
// Question  7 is belongs to 
	QuestionType[6] = 2;
