// a variable to represent the department 
var department = "ENG_EBC";

// Total number of questions in Ex2 
// Becoming a Preferred Graduate
var TotalNoOfQuestions = 15;

// 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] = "Able to communicate effectively in English with familiar people in familiar situations.";

// Question 2
	Question[1] = "Able to communicate effectively in English with <b>un</b>familiar people in <b>un</b>familiar situations.";
	
// Question 3
	Question[2] = "Enthusiastic about finding ways to communicate ever more effectively in English.";
	
// Question 4
	Question[3] = "Familiar with the current use of information technology in business communication.";
	
// Question 5
	Question[4] = "Able to foresee and discuss future changes in information technology in business communication.";
	
// Question 6
	Question[5] = "Able to identify the professional requirements of individuals from very diverse backgrounds.";
	
// Question 7
	Question[6] = "Able to communicate effectively your own preferences to professional colleagues.";
	
// Question 8
	Question[7] = "Able to bridge effectively professionals from different specialisms and diverse cultural and linguistic backgrounds.";
	
// Question 9
	Question[8] = "Able to act creatively when handling competing professional requirements.";
	
// Question 10
	Question[9] = "Able to use a variety of academic tools to describe and analyse English in business communication.";
	
// Question 11
	Question[10] = "Able to lead a team effectively towards achieving its goal.";
	
// Question 12
	Question[11] = "Able to contribute effectively as a member of a team.";
	
// Question 13
	Question[12] = "Be an independent and autonomous life-long learner.";

// Question 14
	Question[13] = "Able to exercise creativity, critical thinking and analytical problem-solving skills.";
	
// Question 15
	Question[14] = "Be oriented towards thinking global and acting local.";



// Total number of categories in this question set
var TotalNoOfCategory  = 8;

var Category = new Array(TotalNoOfCategory);
// Category 1
	Category[0] = "Professionals in HK are expected to become increasingly confident in communicating through English.";
	
// Category 2
	Category[1] = "Professionals in HK are expected to be familiar with the continuous development of information technology.";
	
// Category 3
	Category[2] = "Professionals in HK are expected to co-operate with specialists from diverse technical, cultural and linguistic backgrounds.";
	
// Category 4
	Category[3] = "Professionals in HK are expected to be aware of the common socio-linguistic characteristics of English in business communication.";
	
// Category 5
	Category[4] = "Professionals in HK are expected to be effective team leaders and co-operative team members.";
	
// Category 6
	Category[5] = "Professionals in HK act to keep up with the changing knowledge in their own fields and are committed to continuous professional development (CPD).";
	
// Category 7
	Category[6] = "Professionals in HK are expected to explore alternative solutions to problems.";

// Category 8
	Category[7] = "Local professionals are sensitive to the international role of the HKSAR.";


// 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] = 3;
	
// 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] = 4;
	
// 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] = 2;
	
// 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] = 0;
	
// Question  4 is belongs to 
	QuestionType[3] = 1;
	
// Question  5 is belongs to 
	QuestionType[4] = 1;
	
// Question  6 is belongs to 
	QuestionType[5] = 2;
	
// Question  7 is belongs to 
	QuestionType[6] = 2;
	
// Question  8 is belongs to 
	QuestionType[7] = 2;
	
// Question  9 is belongs to 
	QuestionType[8] = 2;
	
// Question  10 is belongs to 
	QuestionType[9] = 3;
	
// Question  11 is belongs to 
	QuestionType[10] = 4;
	
// Question  12 is belongs to 
	QuestionType[11] = 4;
	
// Question  13 is belongs to 
	QuestionType[12] = 5;
	
// Question  14 is belongs to 
	QuestionType[13] = 6;
	
// Question  15 is belongs to 
	QuestionType[14] = 7;
	
