// a variable to represent the department 
var department = "ORR";

// Total number of questions in Ex2 
// Becoming a Preferred Graduate
var TotalNoOfQuestions = 17;

// 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] = "General understanding of the work of a radiographer";

// Question 2
	Question[1] = "Competency in practice, for example, know how to apply the learned skills and technology in actual work";
	
// Question 3
	Question[2] = "Specialised knowledge of either Radiation Therapy or Medical Imaging";
	
// Question 4
	Question[3] = "Strong communication and interpersonal skills";
	
// Question 5
	Question[4] = "Caring attitude and sensitivity to all of a patient's needs";
	
// Question 6
	Question[5] = "Ability to work with colleagues that serve patients' best interest";
	
// Question 7
	Question[6] = "Ability to manage clinical procedures and supervise subordinates in the workplace";
	
// Question 8
	Question[7] = "Ability to be a role model for radiography colleagues";
	
// Question 9
	Question[8] = "Independent and life-long learning skills";
	
// Question 10
	Question[9] = "Ability to reflect on experiences to improve clinical practice ";
	
// Question 11
	Question[10] = "Open-mindedness";
	
// Question 12
	Question[11] = "Creativity";
	
// Question 13
	Question[12] = "Critical thinking and analytical skills";
	
// Question 14
	Question[13] = "Problem solving skills";

	
// Question 15
	Question[14] = "Research-led practice";
	
	
// Question 16
	Question[15] = "Responsibility for their actions";
	
		
// Question 17
	Question[16] = "Ability to reflect upon rights and wrongs of clinical practice";
	


// Total number of categories in this question set
var TotalNoOfCategory  = 7;

var Category = new Array(TotalNoOfCategory);
// Category 1
	Category[0] = "Graduates in Radiography from the PolyU offer two types of health care service to the public. They may treat cancer patients with radiation, or they may produce medical images using different kinds of imaging modalities such as conventional radiography, ultrasound, computed tomography, magnetic resonance imaging and radionuclide imaging.";
	
// Category 2
	Category[1] = "It is very important for radiographers to communicate well with doctors, nurses, allied health professionals, patients and their family members.  Radiographers should adopt a holistic and empathetic approach to care for their patients.";
	
// Category 3
	Category[2] = "Radiographers must work collaboratively with all health care professionals in the hospitals.";
	
// Category 4
	Category[3] = "Radiographers take up leadership responsibilities.";
	
// Category 5
	Category[4] = "Radiographers must constantly update their knowledge about the discipline and adopt the culture of life-long learning.";
	
// Category 6
	Category[5] = "When facing a problem, radiographers 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] = "Radiographers must maintain the ethical standards of the profession.";



// 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] = 1;
	
// Total number of question(s) in Category[3] - Category 4
	QuestionCategory[3] = 2;
	
// 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] = 5;
	
// Total number of question(s) in Category[6] - Category 7
	QuestionCategory[6] = 2;





// 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] = 3;
	
// Question  8 is belongs to 
	QuestionType[7] = 3;
	
// Question  9 is belongs to 
	QuestionType[8] = 4;
	
// Question  10 is belongs to 
	QuestionType[9] = 4;
	
// Question  11 is belongs to 
	QuestionType[10] = 5;
	
// Question  12 is belongs to 
	QuestionType[11] = 5;
	
// Question  13 is belongs to 
	QuestionType[12] = 5;
	
//Question  is belongs to 
	QuestionType[13] = 5;
	
//Question  is belongs to 
	QuestionType[14] = 5;
	
//Question  is belongs to 
	QuestionType[15] = 6;
	
//Question  is belongs to 
	QuestionType[16] = 6;
	

	
