// a variable to represent the department 
var department = "BUSS";

// 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 (economics, accounting, etc.) but also of current affairs and world events";
	
// Question 3
	Question[2] = "Able to develop my own point of view";
	
// Question 4
	Question[3] = "Able to argue with or against the viewpoints 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 different fields";
	
// Question 7
	Question[6] = "Able to be a leader and a team player";
	
// Question 8
	Question[7] = "Able to understand and deal with a larger world than just Hong Kong";
	
// Question 9
	Question[8] = "Curiosity drives creativity";
	
// Question 10
	Question[9] = "Solve problems creatively, critically and flexibly";
	
// Question 11
	Question[10] = "Have independent and life-long learning skills";
	




// Total number of categories in this question set
var TotalNoOfCategory  = 7;

var Category = new Array(TotalNoOfCategory);
// Category 1
	Category[0] = "Graduates of the Business Studies discipline must be equipped with adequate skills and knowledge to survive in today's society.";
	
// Category 2
	Category[1] = "As the business world 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 3
	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 4
	Category[3] = "People now deal with international issues.";
	
// Category 5
	Category[4] = "People now value how you connect with your human curiosity.";
	
// Category 6
	Category[5] = "People realise that for every problem there are many possible solutions.";
	
// Category 7
	Category[6] = "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] - Category 1
	QuestionCategory[0] = 2;
	
// Total number of question(s) in Category[1] - Category 2
	QuestionCategory[1] = 2;
	
// Total number of question(s) in Category[2]  - Category 3
	QuestionCategory[2] = 3;
	
// Total number of question(s) in Category[3] - Category 4
	QuestionCategory[3] = 1;
	
// Total number of question(s) in Category[4] - Category 5
	QuestionCategory[4] = 1;
	
// Total number of question(s) in Category[5] - Category 6
	QuestionCategory[5] = 1;
	
// Total number of question(s) in Category[6] - Category 7
	QuestionCategory[6] = 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] = 3;
	QuestionType[8] = 4;
	QuestionType[9] = 5;
	QuestionType[10] = 6;
	
