// Total number of question in Ex3h,
// Getting the Most out of Assignments
var TotalNoOfQuestions = 9;

// 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>Understand the assignment thoroughly.</li></ul>";
	
// Question 2
	Question[1] = "<ul><li>Find out the requirements of the assignment, for example, writing style, layout, method of referencing, word limits, deadline for handing in the assignment, etc.</li></ul>";

// Question 3
	Question[2] = "<ul><li>Draw up a time schedule to make sure that you can finish the assignment before the deadline.</li></ul>";
	
// Question 4
	Question [3] = "<ul><li>Get ideas from as different sources such as books, journals, internet websites, and discuss with your classmates and teachers.</li></ul>";

//Question 5
	Question[4] = "<ul><li>Produce an original answer based on your own understanding.</li></ul>";
	
// Question 6
	Question[5] = "<ul><li>Organise your ideas and write down your thoughts to make sure that your answers are logically answering the question.</li></ul>";
	
// Question 7
	Question[6] = "<ul><li>Refer to <i>How to get a good answer</i>.  It will help you to achieve good learning and get a good grade.</li></ul>";
	
// Question 8
	Question[7] = "<ul><li>Review your draft to make sure that it answers the question.</li></ul>";

// Question 9
	Question[8] = "<ul><li>Seek comments from tutors.</li></ul>";


// Total number of categories in this question set
var TotalNoOfCategory  = 3;

var Category = new Array(TotalNoOfCategory);

// Category 1
	Category[0] = "Before an assignment ...";
	
// Category 2
	Category[1] = "During an assignment ...";

// Category 3
	Category[2] = "After an assignment ...";


// 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>learn to <b>learn independently</b></li></ul>";
	
// Hits 2
	hits[1] = "so that you can <br><ul><li>achieve <b>deep understanding</b> of the knowledge<li></li>develop thinking abilities</li></ul>";
	
// Hits 3
	hits[2] = "so that you can <br><ul><li>develop <b>life-long learning</b> attitude and skills</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] = 3;

// Total number of question(s) in Category[1] - Category 2
	QuestionCategory[1] = 4;
	
// 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] = 0;
	
// Question  4 is belongs to 
	QuestionType[3] = 1;
	
// Question  5 is belongs to 
	QuestionType[4] = 1;
	
// Question  6 is belongs to 
	QuestionType[5] = 1;
	
// Question  7 is belongs to 
	QuestionType[6] = 1;

// Question  8 is belongs to 
	QuestionType[7] = 2;

// Question 9 is belongs to
	QuestionType[8] = 2;
