// Total number of questions 
var TotalNoOfQuestions = 8;

// 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] = "(a) <u>Encourage</u> group <u>members to suggest</u> as many solutions as possible.";

// Question 2
	Question[1] = "(b) Make sure that <u>everyone understands </u>alternative solutions.";


// Question 3
	Question[2] = "(c) Allow members to point out the <u>advantages and disadvantages</u> of each alternative solution.";


// Question 4
	Question[3] = "(d) <u>Avoid </u>taking a majority vote <u>without having considered all the alternatives</u> in detail.";


// Question 5
	Question[4] = "(e) <u>Avoid</u> making a <u>quick decision</u> because of time constraints.";


// Question 6
	Question[5] = "(f) <u>Avoid </u>having <u>dominant speakers</u> or &quot;smart guys&quot; make decisions at all times.";


// Question 7
	Question[6] = "(g) <u>Involve all members</u> in the decision-making process.";


// Question 8
	Question[7] = "(h) Ensure that the final decision <u>satisfies everyone</u>.";

