// Total number of questions 
var TotalNoOfQuestions = 20;

// 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) We tried to include members with different expertise in the group instead of getting together with friends.";

// Question 2
	Question[1] = "(2) Ground rules were discussed and agreed by all members.";


// Question 3
	Question[2] = "(3) Group members tried to maintain good group culture by applying the ground rules.";


// Question 4
	Question[3] = "(4) We tried hard to clarify the goals of our group for doing the project.";


// Question 5
	Question[4] = "(5)  Responsibilities allocated to members were fair in terms of workload.";


// Question 6
	Question[5] = "(6) Our group fully utilized the members' differences, strengths, and competence.";


// Question 7
	Question[6] = "(7) Communication among group members was open and non-defensive.";


// Question 8
	Question[7] = "(8) Group members respected different opinions and tried hard to handle disagreements reasonably.";

// Question 9
	Question[8] = "(9) Decision making was based on the common interest of our group.";

// Question 10
	Question[9] = "(10) Task leaders and members were able to fulfill their roles and work together productively. ";

// Question 11
	Question[10] = "(11) Our group reviewed how well we were working as a team from time to time.";

// Question 12
	Question[11] = "(12) I always felt myself to be part of the group.";

// Question 13
	Question[12] = "(13) I fully understood the project goals and was committed to achieving them.";

// Question 14
	Question[13] = "(14) I was clear about what I was expected to do in the group.";

// Question 15
	Question[14] = "(15) I was cooperative in following the ground rules.";

// Question 16
	Question[15] = "(16) I was able to communicate my ideas clearly to other group members. ";

// Question 17
	Question[16] = "(17) I felt I was accepted by the group members.";

// Question 18
	Question[17] = "(18) I could accept others' opinions and personalities.";

// Question 19
	Question[18] = "(19) I respected the group decisions and tried my best to carry them out.";


// Question 20
	Question[19] = "(20) I was able to take up the responsibility as a leader in my own area of responsibility.";


