// Total number of questions 
var TotalNoOfQuestions = 10;

// Total number of option in each question
var TotalNoOfOptions = 2;

// 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) Our work addresses the requirement of the project.";

// Question 2
	Question[1] = "(2) Our work is based on strong theoretical foundation because we have made adequate reference to theories.";


// Question 3
	Question[2] = "(3) The methods, instruments etc. that we have chosen are the best among all possible alternatives because we have considered enough criteria and the possible constraints in evaluating them.";


// Question 4
	Question[3] = "(4) The method used to tackle the project is free from illogical assumptions.";


// Question 5
	Question[4] = "(5) Our work contains adequate contents because we have collected sufficient information for the project.";


// Question 6
	Question[5] = "(6) The information used in the project is relevant to the question.";


// Question 7
	Question[6] = "(7) The objectives of the investigations (experiments, surveys, etc.) are relevant to the project.";


// Question 8
	Question[7] = "(8) Our data are reliable because the procedures for collecting data are appropriate and have been properly carried out.";

// Question 9
	Question[8] = "(9) Our findings and conclusions are reasonable because we have thoroughly analyzed the data.";

// Question 10
	Question[9] = "(10) The reporting of our work is accurate and of a high standard.";

