// 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>Feel free to speak</u> up your ideas or feelings.";

// Question 2
	Question[1] = "(b) Present your ideas in a <u>simple and organized way</u>.";


// Question 3
	Question[2] = "(c) Use <u>words</u> which people can <u>easily understand</u>.";


// Question 4
	Question[3] = "(d) Check the <u>feedback from your audience</u> to make sure that they understand you e.g. asking  questions, observing body language).";


// Question 5
	Question[4] = "(e) <u>Know your audience</u> well (e.g. interests, backgrounds, personalities). ";


// Question 6
	Question[5] = "(f) Listen to others' opinions <u>without prejudice or negative feelings</u>.";


// Question 7
	Question[6] = "(g) Try to <u>understand other people's situation.</u>";


// Question 8
	Question[7] = "(h) Focus on issues</u> and try your best to avoid personal attacks. ";

