// a variable to represent the department 
var department = "LSGI";

// 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] = "Have general knowledge of the LSGI discipline";

// Question 2
	Question[1] = "Have knowledge of how different areas of the discipline interact with each other";
	
// Question 3
	Question[2] = "Have specialised knowledge in chosen areas of this discipline";
	
// Question 4
	Question[3] = "Understand how the advanced satellite, electronic and computer-based systems work";
	
// Question 5
	Question[4] = "Able to use information gathered from these systems to perform special tasks";
	
// Question 6
	Question[5] = "Have knowledge of principles in computing, construction technology and management";
	
// Question 7
	Question[6] = "Able to be a leader";
	
// Question 8
	Question[7] = "Able to be a team player";
	
// Question 9
	Question[8] = "Have strong communication and interpersonal skills";
	
// Question 10
	Question[9] = "Have independent and life-long learning skills";
	
// Question 11
	Question[10] = "Open-minded";
	
// Question 12
	Question[11] = "Have creativity, critical thinking and analytical skills";
	
// Question 13
	Question[12] = "Have problem solving skills";

// Question 14
	Question[13] = "Able to see both the positive and negative sides of things";
	
// Question 15
	Question[14] = "Able to give an opinion and back it up with actions";



// Total number of categories in this question set
var TotalNoOfCategory  = 9

var Category = new Array(TotalNoOfCategory);
// Category 1
	Category[0] = "Graduates of the LSGI department may work in many different jobs.  You may:<br><ul><li>create maps of land surface and sea bed;</li><li>help design and build roads, tunnels, buildings and other large construction projects;</li><li>define the ownership of land;</li><li>measure accurately the shape of the Earth;</li><li>analyse information for planning and environmental studies;</li><li>take part in other activities.</li></ul>";
	
// Category 2
	Category[1] = "Because there are so many areas of work in this profession, it will be necessary for you to choose some areas of specialisation and become an expert in those areas.";
	
// Category 3
	Category[2] = "This is a technology-based profession because it uses advanced satellite, electronic and computer-based systems.";
	
// Category 4
	Category[3] = "You will be working with colleagues from computing (to work with calculations, etc.), construction technology (to do construction, etc.) and management (to manage a project, etc.)  You need to know about their work.";
	
// Category 5
	Category[4] = "You may lead a team in performing a job.  You must function effectively in the team and take up leadership responsibilities when needed.  This is important when you are working in a project team with colleagues from other professions.";
	
// Category 6
	Category[5] = "You must communicate well with your colleagues from different segments of the discipline.  You must also communicate well with colleagues from other professions who may be engineers, planners and administrators.";
	
// Category 7
	Category[6] = "You must constantly get the most up-to-date knowledge about your specialised areas and the discipline in general.  Continuous Professional Development (CPD) is very important.";

// Category 8
	Category[7] = "When facing a problem, you must thoroughly consider all available solutions before deciding on the best one.  You must not only focus on a few solutions but also new and innovative ones.";
	
// Category 9
	Category[8] = "You must observe 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] = 2;
	
// Total number of question(s) in Category[1] - Category 2
	QuestionCategory[1] = 1;
	
// 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] = 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] = 3;

// Total number of question(s) in Category[8] - Category 9
	QuestionCategory[8] = 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] = 1;
	
// Question  4 is belongs to 
	QuestionType[3] = 2;
	
// Question  5 is belongs to 
	QuestionType[4] = 2;
	
// Question  6 is belongs to 
	QuestionType[5] = 3;
	
// Question  7 is belongs to 
	QuestionType[6] = 4;
	
// Question  8 is belongs to 
	QuestionType[7] = 4;
	
// Question  9 is belongs to 
	QuestionType[8] = 5;
	
// Question  10 is belongs to 
	QuestionType[9] = 6;
	
// Question  11 is belongs to 
	QuestionType[10] = 7;
	
// Question  12 is belongs to 
	QuestionType[11] = 7;
	
// Question  13 is belongs to 
	QuestionType[12] = 7;
	
// Question  14 is belongs to 
	QuestionType[13] = 8;
	
// Question  15 is belongs to 
	QuestionType[14] = 8;
	
