// Total number of questions 
var TotalNoOfQuestions = 17;

// Total number of option in each question
var TotalNoOfOptions = 5;

// an array that stores the results of each question 
var result =  new Array(TotalNoOfQuestions);

// The question set
var Question = new Array(TotalNoOfQuestions);
// Question 1
	Question[0] = "(1) All members were involved in planning the structure of the presentation.";

// Question 2
	Question[1] = "(2) Responsibilities for preparing and delivering the presentation were allocated appropriately.";


// Question 3
	Question[2] = "(3) The group brainstormed ideas to make the presentation more interesting.";


// Question 4
	Question[3] = "(4) Enough group effort was put in checking the quality of the contents of presentation.";


// Question 5
	Question[4] = "(5) A group rehearsal was carried out to fine-tune the quality of delivery.";


// Question 6
	Question[5] = "(6) Group members helped each other to learn the presentation skills and the information display technologies.";


// Question 7
	Question[6] = "(7) Suggestions made by individual member were carefully considered by the group.";


// Question 8
	Question[7] = "(8) The contents of the presentation were considered relevant and good by our teacher.";

// Question 9
	Question[8] = "(9) The structure was systematic and logical such that the audience was able to follow through.";

// Question 10
	Question[9] = "(10) The materials were displayed clearly such that the audience was able to see well and understand.";

// Question 11
	Question[10] = "(11) The visual aids were attractive and effective in explaining ideas.";

// Question 12
	Question[11] = "(12) The delivery was successful and the attention of the audience was captured";

// Question 13
	Question[12] = "(13) I made good use of the opportunity to develop my presentation skills.";

// Question 14
	Question[13] = "(14) I managed to complete my share of responsibilities on schedule.";

// Question 15
	Question[14] = "(15) I tried my best to complete my share of responsibilities and produce good quality work";

// Question 16
	Question[15] = "(16) I contributed my critical comments during the rehearsal.";
	
// Question 17
	Question[16] = "(17) I took a positive attitude in considering my group members' comments on my part of work.";

