// 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>Not afraid</u> of being a leader.";

// Question 2
	Question[1] = "(b) <u>Willing</u> to <u>take up the responsibilities</u> of a leader in the area where you are more knowledgeable.";


// Question 3
	Question[2] = "(c) <u>Determined</u> to act as a good leader for the assigned task.";


// Question 4
	Question[3] = "(d) Able to <u>see the direction</u> and to point it out to group members.";


// Question 5
	Question[4] = "(e) Able to <u>stimulate others</u> to think and contribute ideas in a meeting.";


// Question 6
	Question[5] = "(f) <u>Willing to listen</u> to members instead of speaking yourself for most of the time.";


// Question 7
	Question[6] = "(g) Able to <u>consider</u> the <u>feelings</u> of members during group discussions.";


// Question 8
	Question[7] = "(h) Able to <u>summarize</u> the points to guide the group to <u>make a decision at the appropriate time</u>.";

