// Total number of question in Ex3c,
// Getting the Most out of the Practical Classes
var TotalNoOfQuestions = 8;

// 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 objectives of the practical work.</li></ul>";
	
// Question 2
	Question[1] = "<ul><li>Relate the practical work to the concepts introduced in lectures.</li></ul>";

// Question 3
	Question[2] = "<ul><li>Read related materials, such as the guide for the practical work, background theories, etc.</li></ul>";
	
// Question 4
	Question [3] = "<ul><li>Play an <b>active</b> role in doing the work and applying the concepts.</li></ul>";

//Question 5
	Question[4] = "<ul><li>Work together with your classmates, question each other and share ideas and references.</li></ul>";
	
// Question 6
	Question[5] = "<ul><li>Observe carefully and jot down what happens.</li></ul>";
	
// Question 7
	Question[6] = "<ul><li>Think about what/how you learned and see what/how to improve yourself in the future.</li></ul>";
	
// Question 8
	Question[7] = "<ul><li>When you write a report,<ul><li>Analyse the data/information collected for meanings;</li><li>Relate the results to existing theories and argue for your interpretation;</li><li>Discuss the errors/uncertainties in depth and comment on the limitation of the practical work;</li><li>Make recommendations for improving the practical work based on observation and evaluation.</ul></li></ul>";


// Total number of categories in this question set
var TotalNoOfCategory  = 3;

var Category = new Array(TotalNoOfCategory);

// Category 1
	Category[0] = "Before a practical class:";
	
// Category 2
	Category[1] = "During a practical class:";

// Category 3
	Category[2] = "After a practical class:";


// 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 <b>motivated</b></li><li>develop an <b>independent learning</b> attitude</li></ul>";
	
// Hits 2
	hits[1] = "so that you can <br><ul><li>develop an <b>active</b> learning attitude</li><li>to become a <b>team player</b> and possibly a <b>team leader</b></li></ul>";
	
// Hits 3
	hits[2] = "so that you can <br><ul><li>develop <b>professional skills</b></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] = 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] = 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] = 2;

// Question  8 is belongs to 
	QuestionType[7] = 2;
