// Total number of questions 
var TotalNoOfQuestions = 16;

// 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 understood and agreed on how the whole project was broken down into sub-tasks.";

// Question 2
	Question[1] = "(2) Job was allocated according to the strengths of each member.";


// Question 3
	Question[2] = "(3) All members were clear about the time frame and their own responsibilities.";


// Question 4
	Question[3] = "(4) All members understood that their own part would contribute to the group's success.";


// Question 5
	Question[4] = "(5) Individual difficulties experienced by individuals were discussed in the group and other members helped to resolve the difficulties.";


// Question 6
	Question[5] = "(6) The work breakdown schedule allowed effective collaboration among group members.";


// Question 7
	Question[6] = "(7) The timing and sequencing of sub-tasks allowed the project to progress smoothly.";


// Question 8
	Question[7] = "(8) Data collected were organized systematically for later use.";

// Question 9
	Question[8] = "(9) On-going checking throughout the process was made to ensure that everything was on the right track.";

// Question 10
	Question[9] = "(10) Appropriate corrective actions were taken to handle unexpected problems.";

// Question 11
	Question[10] = "(11) The quality of work produced was examined regularly during the process and also at the end.";

// Question 12
	Question[11] = "(12) I tried my best to complete my responsible area on time.";

// Question 13
	Question[12] = "(13) I tried my best to complete what I was assigned and produce good quality work.";

// Question 14
	Question[13] = "(14) I regarded the group success as my own success.";

// Question 15
	Question[14] = "(15) I cared about how well other members could learn from my responsible area.";

// Question 16
	Question[15] = "(16) I learned from other group members.";
