// a variable to represent the department 
var department = "ORO";

// Total number of questions in Ex2 
// Becoming a Preferred Graduate
var TotalNoOfQuestions = 13;

// 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] = "Understand concepts in basic sciences, optometry, visual sciences and clinical optometry";

// Question 2
	Question[1] = "Be competent in practice, for example, know how to apply the learned skills and technology in actual work";
	
// Question 3
	Question[2] = "Have strong communication and interpersonal skills";
	
// Question 4
	Question[3] = "Show a caring attitude and sensitivity to clients' needs";
	
// Question 5
	Question[4] = "Be responsible for the actions taken";
	
// Question 6
	Question[5] = "Take time to reflect upon the daily work and learn from what is done right and what is done wrong";
	
// Question 7
	Question[6] = "Have knowledge of many subjects";
	
// Question 8
	Question[7] = "Able to be a leader";
	
// Question 9
	Question[8] = "Open-minded";
	
// Question 10
	Question[9] = "Creative";
	
// Question 11
	Question[10] = "Have critical thinking and analytical skills";
	
// Question 12
	Question[11] = "Have problem solving skills";
	
// Question 13
	Question[12] = "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] = "Optometrists offer eyecare services to the public.  These services may include refraction, prescribing spectacles and contact lenses, prescribing other special visual aids and detection of ocular as well as systemic problems.";
	
// Category 2
	Category[1] = "Optometrists must communicate effectively with their clients.  Optometrists need to be able to explain clearly the clients' conditions and give appropriate advice.";
	
// Category 3
	Category[2] = "Optometrists must observe the ethical standards of the profession.";
	
// Category 4
	Category[3] = "Optometrists are knowledgeable in many subjects outside their profession so that they have a wide view of what is going on in the society and around the world.";
	
// Category 5
	Category[4] = "Optometrists take up leadership responsibilities.";
	
// Category 6
	Category[5] = "When facing a problem, optometrists must thoroughly consider all available solutions before deciding on the best one.  They must not only focus on a few solutions but also new and innovative ones.";
	
// Category 7
	Category[6] = "Optometrists must constantly get the most up-to-date knowledge about their profession.  Continuous Professional Development (CPD) is very important to them.";




// 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] = 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] = 4;
	
// 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

// 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] = 4;
	
// Question  9 is belongs to 
	QuestionType[8] = 5;
	
// Question  10 is belongs to 
	QuestionType[9] = 5;
	
// Question  11 is belongs to 
	QuestionType[10] = 5;
	
// Question  12 is belongs to 
	QuestionType[11] = 5;
	
// Question  13 is belongs to 
	QuestionType[12] = 6;
	

	
