// Total number of question in Ex3f,
// Getting the Most out of the Presentations
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>Clarify the theme of your presentation</li></ul>";
	
// Question 2
	Question[1] = "<ul><li>Organise the content of your presentation.</li></ul>";

// Question 3
	Question[2] = "<ul><li>Prepare the presentation materials.</li></ul>";
	
// Question 4
	Question [3] = "<ul><li>Be critical about your presentation content. Make sure that it is clear and logical.</li></ul>";

//Question 5
	Question[4] = "<ul><li>Refer to the section on preparing for a presentation in <i>How to work effectively in a group project for detailed help</i>.</li></ul>";
	
// Question 6
	Question[5] = "<ul><li>Be confident and try your best to put up a good show.</li></ul>";
	
// Question 7
	Question[6] = "<ul><li>Refer to <i>How to work effectively in a group project</i> for advice on presentation skills.</li></ul>";
	
// Question 8
	Question[7] = "<ul><li>Try your best to learn from your classmates' comments about your presentation.</li></ul>";

// Question 9
	Question[8] = "<ul><li>Use the <i>self-evaluation checklist</i> in <i>How to work effectively in a group project</i> to help you to review your performance at the presentation.</li></ul>";


// Total number of categories in this question set
var TotalNoOfCategory  = 3;

var Category = new Array(TotalNoOfCategory);

// Category 1
	Category[0] = "Before a presentation ...";
	
// Category 2
	Category[1] = "During a presentation ...";

// Category 3
	Category[2] = "After a presentation ...";


// 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>develop a <b>clear understanding</b> of the knowledge</li><li>develop your <b>thinking abilities</b></li></ul>";
	
// Hits 2
	hits[1] = "so that you can <br><ul><li>Develop <b>communication skills</b></li><li>Get <b>new knowledge</b></li></ul>";
	
// Hits 3
	hits[2] = "so that you can <br><ul><li>Learn to <b>think</b> and <b>analyse</b> your experience </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] = 5;

// 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] = 1;
	
	
	
	
// 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] = 0;
	
// Question  5 is belongs to 
	QuestionType[4] = 0;
	
// Question  6 is belongs to 
	QuestionType[5] = 1;
	
// Question  7 is belongs to 
	QuestionType[6] = 1;

// Question  8 is belongs to 
	QuestionType[7] = 1;

// Question 9 is belongs to
	QuestionType[8] = 2;
