// 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 were involved in the planning and decision-making process.";

// Question 2
	Question[1] = "(2) Group members valued and respected the knowledge and expertise of individual members.";


// Question 3
	Question[2] = "(3) Suggestions made by individual members were carefully considered by the group.";


// Question 4
	Question[3] = "(4) Group members encouraged each other to make creative suggestions.";


// Question 5
	Question[4] = "(5)  Differences in opinions helped the group learn more and arrive at better decisions.";


// Question 6
	Question[5] = "(6) The group always made sure that everybody had understood and agreed on the decision before moving on to another issue.";


// Question 7
	Question[6] = "(7) The discussion at the beginning helped group members to understand the requirements of the project thoroughly.";


// Question 8
	Question[7] = "(8) We were able to bring in knowledge/examples from many subjects and areas to tackle the problem.";

// Question 9
	Question[8] = "(9) We were able to propose creative and useful ideas for the project.";

// Question 10
	Question[9] = "(10) We agreed on the most appropriate method by evaluating the different ideas based on the appropriate criteria.";

// Question 11
	Question[10] = "(11) I tried hard to make use of my knowledge and expertise to contribute to the project.";

// Question 12
	Question[11] = "(12) I tried my very best to understand what had been discussed in the group.";

// Question 13
	Question[12] = "(13) I did my best to contribute ideas in discussions.";

// Question 14
	Question[13] = "(14) I found that sharing in the group could inspire me to come up with more ideas.";

// Question 15
	Question[14] = "(15) I took a positive attitude in considering my group members' comments on my ideas and my work.";

// Question 16
	Question[15] = "(16) I considered others' feelings seriously before I raised any different opinions.";
