// a variable to represent the department 
var department = "ENG_LSB";

// Total number of questions in Ex2 
// Becoming a Preferred Graduate
var TotalNoOfQuestions = 14;

// 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] = "Have deep knowledge of human language: its origin, forms, acquisition and universal properties";

// Question 2
	Question[1] = "Have deep knowledge of the English language: its sound patterns, the structure of the vocabulary, grammar and sentence structure";
	
// Question 3
	Question[2] = "Have deep knowledge of the relationships between contexts of use and linguistic features in written and spoken texts";
	
// Question 4
	Question[3] = "Have deep knowledge of the application of English in different types of academic, business and professional contexts";
	
// Question 5
	Question[4] = "Have knowledge of fundamental business and management theories and practices";
	
// Question 6
	Question[5] = "Have knowledge of social, business, management and ethnic cultures in the world in which English is used";
	
// Question 7
	Question[6] = "Able to compare languages and the backgrounds of these languages";
	
// Question 8
	Question[7] = "Have an open-minded attitude, sensitivity to and appreciation of cultural diversity";
	
// Question 9
	Question[8] = "Able to build strong interpersonal relationships with people of different cultures and professions";
	
// Question 10
	Question[9] = "Have knowledge of the nature and functioning of multilingual and multicultural organisations in various business environments";
	
// Question 11
	Question[10] = "Able to be a leader and a team players";
	
// Question 12
	Question[11] = "Have independent and life-long learning skills";
	
// Question 13
	Question[12] = "Have creativity, critical thinking and analytical skills";

// Question 14
	Question[13] = "Have a global view";
	




// Total number of categories in this question set
var TotalNoOfCategory  = 8;

var Category = new Array(TotalNoOfCategory);
// Category 1
	Category[0] = "Graduates in Language Studies with Business understand very well the use of English and at least one other foreign language (French, German or Japanese).";
	
// Category 2
	Category[1] = "Graduates are experts in the use of languages in the academic setting and in a range of social, business and professional contexts within or outside of Hong Kong.";
	
// Category 3
	Category[2] = "Graduates understand the general business culture and different management styles that exist in the world today.  Hence, they are likely to succeed in building a business or professional career.";
	
// Category 4
	Category[3] = "Graduates have a broad view of, and appreciate, different cultures as they compare their own mother language with other languages along with the cultural and socio-economic backgrounds that come with these languages.  Graduates succeed in communicating with people across different cultures and professions.  They also understand the nature and functioning of multilingual and multicultural organisations in various business environments.";
	
// Category 5
	Category[4] = "Graduates are effective leaders and team players.";
	
// Category 6
	Category[5] = "Graduates get the most up-to-date knowledge in their own profession.  They are committed in continuous professional development (CPD).";
	
// Category 7
	Category[6] = "When facing a problem, a graduate will explores existing and new solutions and is responsive to the suggestions of peers and superiors.";

// Category 8
	Category[7] = "Graduates have knowledge about the role of Hong Kong in the international business arena.";


// 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] = 2;
	
// Total number of question(s) in Category[3] - Category 4
	QuestionCategory[3] = 4;
	
// 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;

// Total number of question(s) in Category[7] - Category 8
	QuestionCategory[7] = 1;




// Which question should belongs to which category	
var QuestionType = new Array(TotalNoOfQuestions);

//e.g. Question 1 is belong to category 0

// Question 1 is belongs to 
	QuestionType[0] = 0;
// Question  2 is belongs to 	
	QuestionType[1] = 0;
	
// Question  3 is belongs to 
	QuestionType[2] = 1;
	
// Question  4 is belongs to 
	QuestionType[3] = 1;
	
// Question  5 is belongs to 
	QuestionType[4] = 2;
	
// Question  6 is belongs to 
	QuestionType[5] = 2;
	
// Question  7 is belongs to 
	QuestionType[6] = 3;
	
// Question  8 is belongs to 
	QuestionType[7] = 3;
	
// Question  9 is belongs to 
	QuestionType[8] = 3;
	
// Question  10 is belongs to 
	QuestionType[9] = 3;
	
// Question  11 is belongs to 
	QuestionType[10] = 4;
	
// Question  12 is belongs to 
	QuestionType[11] = 5;
	
// Question  13 is belongs to 
	QuestionType[12] = 6;
	
// Question  14 is belongs to 
	QuestionType[13] = 7;
	

	
