<!-- Paste this code into an external JavaScript file named: quiz_config.js  -->


/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: James Crooke :: http://www.cj-design.com */

/* Modified by EJA to display one question at a time
	and give display responses to incorrect answers.
*/

var questions = new Array();
var choices = new Array();
var answers = new Array();
var responses = new Array();

// To add more questions, just follow the format below.

questions[0] = "Research is";
choices[0] = new Array();
choices[0][0] = "conducted only in the so-called hard sciences.";
choices[0][1] = "always a search for a new scientific theory.";
choices[0][2] = "a search for generalizable knowledge or creative expression.";
choices[0][3] = "often a process that leads to trivia and meaningless data.";
answers[0] = choices[0][2];
responses[0] = new Array();
responses[0][0] = "No, the correct answer is a search for generalizable knowledge or creative expression.";
responses[0][1] = "No, the correct answer is a search for generalizable knowledge or creative expression.";
responses[0][2] = "Correct!";
responses[0][3] = "No, the correct answer is a search for generalizable knowledge or creative expression.";

questions[1] = "LGUs were established";
choices[1] = new Array();
choices[1][0] = "in the late 20th century.";
choices[1][1] = "for the sons of wealthy elites.";
choices[1][2] = "by levying taxes on every citizen in every state.";
choices[1][3] = "to pass on knowledge for knowledge's sake.";
answers[1] = choices[1][2];
responses[1] = new Array();
responses[1][0] = "No, the correct answer is by levying taxes on every citizen in every state.";
responses[1][1] = "No, the correct answer is by levying taxes on every citizen in every state.";
responses[1][2] = "Correct!";
responses[1][3] = "No, the correct answer is by levying taxes on every citizen in every state.";

questions[2] = "The distinctive research mission of the LGU is to";
choices[2] = new Array();
choices[2][0] = "serve the traditional professions of theology, medicine, and law.";
choices[2][1] = "discover generalizable knowledge of use to the working classes.";
choices[2][2] = "preserve ancient languages and methods of study.";
choices[2][3] = "pursue theoretical explanations only, leaving for others the practical applications of those theories.";
answers[2] = choices[2][1];
responses[2] = new Array();
responses[2][0] = "No, the correct answer is discover generalizable knowledge of use to the working classes.";
responses[2][1] = "Correct!";
responses[2][2] = "No, the correct answer is discover generalizable knowledge of use to the working classes.";
responses[2][3] = "No, the correct answer is discover generalizable knowledge of use to the working classes.";


questions[3] = "LGUs";
choices[3] = new Array();
choices[3][0] = "currently receive the vast majority of their financial support from private corporations.";
choices[3][1] = "were established in response to Americans' frustration with universities unwilling to sully their hands with the needs of the masses.";
choices[3][2] = "have never been suspected of neglecting their historical mission in favor of privatization.";
choices[3][3] = "refuse to accept financial support from private corporations.";
answers[3] = choices[3][0];
responses[3] = new Array();
responses[3][0] = "Correct!";
responses[3][1] = "No, the correct answer is currently receive the vast majority of their financial support from private corporations.";
responses[3][2] = "No, the correct answer is currently receive the vast majority of their financial support from private corporations.";
responses[3][3] = "No, the correct answer is currently receive the vast majority of their financial support from private corporations.";




questions[4] = "The distinctive values of LGUs include all of the following except:";
choices[4] = new Array();
choices[4][0] = "discover generalizable knowledge of practical use to the working classes.";
choices[4][1] = "preservation of knowledge of Greek and Latin.";
choices[4][2] = "equality of opportunity.";
choices[4][3] = "research for the working classes.";
answers[4] = choices[4][1];
responses[4] = new Array();
responses[4][0] = "No, the correct answer is preservation of knowledge of Greek and Latin.";
responses[4][1] = "Correct!";
responses[4][2] = "No, the correct answer is preservation of knowledge of Greek and Latin.";
responses[4][3] = "No, the correct answer is preservation of knowledge of Greek and Latin.";


questions[5] = "LGUs were instrumental in the rise of each of these professions except";
choices[5] = new Array();
choices[5][0] = "engineering, agriculture and the life sciences.";
choices[5][1] = "veterinary medicine, physical and mathematical sciences";
choices[5][2] = "human medicine and law.";
choices[5][3] = "design, education, and management";
answers[5] = choices[5][2];
responses[5] = new Array();
responses[5][0] = "No, the correct answer is human medicine and law.";
responses[5][1] = "Correct!";
responses[5][2] = "No, the correct answer is human medicine and law.";
responses[5][3] = "No, the correct answer is human medicine and law.";


questions[6] = "One moral danger facing professionals is:";
choices[6] = new Array();
choices[6][0] = "Failure to understand Greek.";
choices[6][1] = "Failure to understand Latin.";
choices[6][2] = "Failing to consider the impact of one's actions on others and profiting unfairly from one's position.";
answers[6] = choices[6][2];
responses[6] = new Array();
responses[6][0] = "No, that is not correct.";
responses[6][1] = "No, that is not correct.";
responses[6][2] = "Correct!";


questions[7] = "To serve public interest and keep public's trust, professionals must do each of the following except:";
choices[7] = new Array();
choices[7][0] = "behave responsibly.";
choices[7][1] = "pursue lifelong learning.";
choices[7][2] = "allow others to make rules and codes of conduct for their group.";
choices[7][3] = "use their privileged positions to serve others.";
answers[7] = choices[7][2];
responses[7] = new Array();
responses[7][0] = "No, the correct answer is allow others to make rules and codes of conduct for their group.";
responses[7][1] = "No, the correct answer is allow others to make rules and codes of conduct for their group.";
responses[7][2] = "Correct!";
responses[7][3] = "No, the correct answer is allow others to make rules and codes of conduct for their group.";

