// Total number of questions 
var TotalNoOfQuestions = 13;

// 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) I am able to state the purpose of the presentation correctly.";

// Question 2
	Question[1] = "(2) I am able to select materials which are appropriate for the purpose of the presentation.";


// Question 3
	Question[2] = "(3) I am able to organize the contents in an orderly and logical manner.";


// Question 4
	Question[3] = "(4) I am able to link up the areas smoothly.";


// Question 5
	Question[4] = "(5) I am able to give a good summary at the end.";


// Question 6
	Question[5] = "(6) I am able to select suitable visual aids for displaying my contents.";


// Question 7
	Question[6] = "(7) I am able to produce visual aids (PowerPoint slide, transparencies) which are attractive and easy to read.";


// Question 8
	Question[7] = "(8) I am able to design good and useful handouts. ";

// Question 9
	Question[8] = "(9) I can handle the visual aid equipment, such as overhead projector, microphone, etc. effectively.";

// Question 10
	Question[9] = "(10) I can be heard clearly.";

// Question 11
	Question[10] = "(11) I am confident and fluent.";

// Question 12
	Question[11] = "(12) I use my facial expressions and body movements appropriately.";

// Question 13
	Question[12] = "(13) I have good timing.";
