// a variable to represent the department 
var department = "GEC";

// Total number of questions in Ex2 
// Becoming a Preferred Graduate
var TotalNoOfQuestions = 11;

// 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] = "Competent in skills such as reading, writing, problem solving, usage of technology, etc.";

// Question 2
	Question[1] = "Have adequate knowledge of not only the majoring subject (engineering, business, etc.) but also a variety of other subjects (astronomy, social science, etc.)";
	
// Question 3
	Question[2] = "Able to develop my own point of view";
	
// Question 4
	Question[3] = "Able to argue with or against the viewoints of other people open-mindedly";
	
// Question 5
	Question[4] = "Able to communicate well and develop interpersonal relationships with other people";
	
// Question 6
	Question[5] = "Have a lot of, not only knowledge, but experience in difference in different fields";
	
// Question 7
	Question[6] = "Able to be a leader and a team player";
	
// Question 8
	Question[7] = "Feel that there is a community including but bigger than my own family and university";
	
// Question 9
	Question[8] = "Able to understand and deal with a larger world than just Hong Kong";
	
// Question 10
	Question[9] = "Curiosity drives creativity";
	
// Question 11
	Question[10] = "Have independent and life-long learning skills";

// Total number of categories in this question set
var TotalNoOfCategory  = 6;

var Category = new Array(TotalNoOfCategory);
	Category[0] = "Every person is expected to have some skills and Knowledge to survive in the modern society.";
	Category[1] = "As the society becomes more complex, you must develop your own personal view. At the same time, you must look at matters from different angles and be able to debate the viewpoints of other people without bias.";
	Category[2] = "As people often work together now, you may be working in a large team with people of different cultures and professions or in other complex environments. You must be able to communicate and work well.";
	Category[3] = "People now deal with international issues.";
	Category[4] = "People now value how you reconnect with your human curiosity.";
	Category[5] = "People now work in a knowledge-based economy. Therefore, you must get the most up-to-date knowledge all the time.";


// Total number of question(s) within each	Category
var QuestionCategory = new Array(TotalNoOfCategory);

// Total number of question(s) in Category[0]
	QuestionCategory[0] = 2;
	
// Total number of question(s) in Category[1]
	QuestionCategory[1] = 2;
	
// Total number of question(s) in Category[2]
	QuestionCategory[2] = 4;
	
// Total number of question(s) in Category[3]
	QuestionCategory[3] = 1;
	
// Total number of question(s) in Category[4]
	QuestionCategory[4] = 1;
	
// Total number of question(s) in Category[5]
	QuestionCategory[5] = 1;
	


// Which question should belongs to which category	
var QuestionType = new Array(TotalNoOfQuestions);

//e.g. Question 1 is belong to category 0
	QuestionType[0] = 0;
	QuestionType[1] = 0;
	QuestionType[2] = 1;
	QuestionType[3] = 1;
	QuestionType[4] = 2;
	QuestionType[5] = 2;
	QuestionType[6] = 2;
	QuestionType[7] = 2;
	QuestionType[8] = 3;
	QuestionType[9] = 4;
	QuestionType[10] = 5;
	
