/**
*  1/19/05 (A. Gonzalez) Chapter No., Book No. and Title Added
*  6/20/05 Modified: (J. Lucca) Removed frames from quizzes.
*  7/7/05 Modified: (J. Lucca)
*     Can turn off HISTOGRAM and randomize_questions on any ch##.htm page
*     by setting them here to false. Both default to true in quiz.js.
*  12/1/05 Modified: (J. Lucca)
*     Can turn off histogram SECTIONS and/or TYPES on any ch##.htm page
*     by setting them here to false. Both default to true in quiz.js.
*/

//////////////////////////////////////////////////////////////////////////////
// HISTOGRAM AND RANDOMIZE OPTIONAL SETTINGS
//    Can turn off per quiz or leave defaults (as set in quiz.js) as true.
//      randomize_questions=true; HISTOGRAM=true; SECTIONS=true; TYPES=true;
//////////////////////////////////////////////////////////////////////////////
HISTOGRAM = false
SECTIONS = false
TYPES = false

/**
* Required settings for all Gradebooks:
*    chapter_no, book_no, book_title
*
* Required when HISTOGRAM = true:
*    At least a section_title[] with its matching q#section for each question
*    or a type_title[] with its matching q#type for each question.
*    Without at least one of these you won't get any histograms.
*/

// ////////////////////////////////////////////////////////////////////////////
// BEGIN PASTE - Paste any existing quiz javascript questions
//               between this comment and one just like it near bottom of page
// ////////////////////////////////////////////////////////////////////////////


// General settings
var chapter_no = "A_Franklin";
var book_no = 92993;
var book_title = "Norton Anthology of American Literature 7E, Full and Shorter Edition";
quiz_name = "Franklin Reading Comprehension Quiz";
var confirm = "confirm.htm";
number_answers = new Array(4,4,4,4,4,4,4);

var number_questions = number_answers.length;

// Sections
section_title = new Array()
section_title[1] = ""
section_title[2] = ""
section_title[3] = ""
section_title[4] = ""

// Tyes
type_title = new Array()
type_title[1] = ""
type_title[2] = ""
type_title[3] = ""



q1        = "What profession does Franklin&#8217;s father originally intend for him to pursue?";
q1answer  = "a";
q1review  = "See page 476 (full ed.) 234 (shorter ed.): &#8220;I was put to the Grammar School at Eight Years of Age, my Father intending to devote me as the Tithe of his Sons to the Service of the Church.&#8221;";
q1type    = "";
q1section = "";
q1a       = "clergy";
q1b       = "printer";
q1c       = "chandler (candle-maker)";
q1d       = "diplomat";

q2        = "How did Franklin learn to write well?";
q2answer  = "b";
q2review  = "See page 481 (full ed.) 239 (shorter ed.): &#8220;About this time I met with an odd Volume of the Spectator...I thought the Writing excellent, and wish&#8217;d if possible to imitate it...By comparing my Work afterwards with the original, I discovered many faults and amended them.&#8221;";
q2type    = "";
q2section = "";
q2a       = "He first learned French, Latin, and Greek.";
q2b       = "He read Joseph Addison&#8217;s The Spectator.";
q2c       = "His writing improved thanks to the criticism of his peers.";
q2d       = "He read the Bible.";

q3        = "Which of the following is not a reason Franklin became a vegetarian?";
q3answer  = "c";
q3review  = "See page 482 (full ed.) 240 (shorter ed.): &#8220;My refusing to eat Flesh occasioned an Inconveniency, and I was frequently chid for my singularity.&#8221;";
q3type    = "";
q3section = "";
q3a       = "He could save money on groceries.";
q3b       = "It was quicker than preparing meats, and he was soon back to work after meals.";
q3c       = "It allowed him to avoid family arguments about his diet.";
q3d       = "Eating vegetables helped him to think better.";

q4        = "What happens to Franklin&#8217;s relationship with Miss Read?";
q4answer  = "d";
q4review  = "See page 517 (full ed.) 275 (shorter ed.): &#8220;We ventured, however, over all these Difficulties, and I took her to Wife Sept. 1, 1730.&#8221;";
q4type    = "";
q4section = "";
q4a       = "They part bitterly when he sails for England, and he never sees her again.";
q4b       = "She marries someone else and has seven children; they remain friends.";
q4c       = "She contracts smallpox and Franklin breaks off contact.";
q4d       = "Franklin marries her.";

q5        = "Which character trait is not of the &#8220;utmost Importance to the Felicity of Life,&#8221; according to Franklin, in &#8220;Dealings between Man and Man&#8221;?";
q5answer  = "a";
q5review  = "See pages 509-10 (full ed.) 267-68 (shorter ed.): &#8220;I grew convinc&#8217;d that Truth, Sincerity, and Integrity in Dealings between Man and Man, were of the utmost importance to the Felicity of Life...&#8221;";
q5type    = "";
q5section = "";
q5a       = "Faith";
q5b       = "Integrity";
q5c       = "Sincerity";
q5d       = "Truth";

q6        = "What is the &#8220;Junto&#8221;?";
q6answer  = "b";
q6review  = "See page 511 (full ed.) 269 (shorter ed.): &#8220;I should have mention&#8217;d before, that in the Autumn of the preceding Year, I had form&#8217;d most of my ingenious Acquaintance into a Club, for mutual Improvement, which we call&#8217;d the Junto. We met on Friday Evenings.&#8221;";
q6type    = "";
q6section = "";
q6a       = "a group of colonial military officers who captured Pittsburg";
q6b       = "friends of Franklin&#8217;s who met to discuss intellectual matters";
q6c       = "the circle of admirers who surrounded Governor Keith";
q6d       = "Franklin&#8217;s fellow apprentices at the printing press";

q7        = "In 1730, Franklin established which institution in Philadelphia?";
q7answer  = "b";
q7review  = "See page 523 (full ed.) 281 (shorter ed.): &#8220;I propos&#8217;d to render the Benefit from Books more common by commencing a Public Subscription Library.&#8221;";
q7type    = "";
q7section = "";
q7a       = "a bookstore";
q7b       = "a public library";
q7c       = "a publishing house";
q7d       = "a public school";

