// a variable to represent the department 
var department = "ITC";

// 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 knowledge of fibers, yarns and fabrics, manufacturing processes and technologies, information technology, materials, products, design, management and accountancy, etc.";

// Question 2
	Question[1] = "Have strong communication skills in oral, written, graphics and numerical forms <p> Have strong interpersonal skills";
	
// Question 3
	Question[2] = "Able to be flexible";
	
// Question 4
	Question[3] = "Have strong observation skills to detect problems and recognize where improvements can be made";
	
// Question 5
	Question[4] = "Have strong problem solving skills to solve problems in actual practice";
	
// Question 6
	Question[5] = "Able to make decision, often based on incomplete information";
	
// Question 7
	Question[6] = "Open-minded";
	
// Question 8
	Question[7] = "Have creativity, critical thinking and analytical skills";
	
// Question 9
	Question[8] = "Able to be a leader and a team player";
	
// Question 10
	Question[9] = "Able to overcome resistance to change";
	
// Question 11
	Question[10] = "Have independent and life-long learning skills";
	
// Question 12
	Question[11] = "Able to see both the positive and negative sides of a situation";
	
// Question 13
	Question[12] = "Have a social and global outlook";

// Question 14
	Question[13] = "Be responsible for the actions taken";
	




// Total number of categories in this question set
var TotalNoOfCategory  = 11;

var Category = new Array(TotalNoOfCategory);
// Category 1
	Category[0] = "As a graduate of ITC, you may take up the position of a merchandiser, product developer or quality controller/ manager, who needs to provide services in various processes such as material selection, consumer requirements, quality evaluation and control, cost, manufacturing technologies, trade regulations, fashion trend, etc. You will implement schemes that integrate people, materials, information, technologies and business knowledge";
	
// Category 2
	Category[1] = "In providing services, merchandisers, product developers and quality controllers/managers must be able to communicate well with manufacturing, design and business personnel both at junior and senior levels";
	
// Category 3
	Category[2] = "As a merchandiser, you need to work collaboratively with other parties, share with them your ideas and perspectives which may be different from theirs.";
	
// Category 4
	Category[3] = "Merchandisers are about understanding, sourcing, developing materials, products and their design as well as monitoring quality. Products designed by designers, made by factories are to be accepted by consumers. Therefore, professionals in the field need to be actively formulating problems, devising and implementing strategies to resolve such problems.";
	
// Category 5
	Category[4] = "Merchandisers, product developers, quality controllers and managers in this discipline often have to make decisions based on incomplete information due to time, materials, personnel and financial constraints";
	
// Category 6
	Category[5] = "When facing a problem, merchandisers and product developers, quality controllers need to make a critical assessment of the situation and seek necessary information from people, journal papers, internet and databases in organizations before deciding on the best possible solution";
	
// Category 7
	Category[6] = "When facing a problem, merchandisers and product developers, quality controllers need to make critical assessments of the situation and seek necessary information such as from people, journals, internet and databases before deciding on the best possible solution";

// Category 8
	Category[7] = "Merchandisers and product developers, quality controllers may need to manage a small team of staff";
	
// Category 9
	Category[8] = "Merchandisers and product developers, quality controllers need to acquire constantly the most up-to-date knowledge with regard to fiber, yarn and fabricmanufacturing technologies and product functions. Continuous Professional Development is very important to them";
	
// Category 10
	Category[9] = "Merchandisers, product developers, quality controllers need to recognize the advantages and limitations associated with the fact that organizations today operate in an international environment";
	
// Category 11
	Category[10] = "Merchandisers, product developers, quality controllers 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] = 1;
	
// 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] = 1;
	
// 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] = 1;
	
// Total number of question(s) in Category[6] - Category 7
	QuestionCategory[6] = 2;

// Total number of question(s) in Category[7] - Category 8
	QuestionCategory[7] = 1;
	
// Total number of question(s) in Category[8] - Category 9
	QuestionCategory[8] = 2;
	
// Total number of question(s) in Category[9] - Category 10
	QuestionCategory[9] = 2;
	
// Total number of question(s) in Category[10] - Category 11
	QuestionCategory[10] = 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] = 1;
	
// Question  3 is belongs to 
	QuestionType[2] = 2;
	
// Question  4 is belongs to 
	QuestionType[3] = 3
	
// Question  5 is belongs to 
	QuestionType[4] = 4;
	
// Question  6 is belongs to 
	QuestionType[5] = 5;
	
// Question  7 is belongs to 
	QuestionType[6] = 6;
	
// Question  8 is belongs to 
	QuestionType[7] = 6;
	
// Question  9 is belongs to 
	QuestionType[8] = 7;
	
// Question  10 is belongs to 
	QuestionType[9] = 8;
	
// Question  11 is belongs to 
	QuestionType[10] = 8;
	
// Question  12 is belongs to 
	QuestionType[11] = 9;
	
// Question  13 is belongs to 
	QuestionType[12] = 9;
	
// Question  14 is belongs to 
	QuestionType[13] = 10;
	
	
