Guest User

Untitled

a guest
Feb 24th, 2015
2,633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 129.08 KB | None | 0 0
  1. module(..., package.seeall)
  2. local json = require("json")
  3.  
  4. --history
  5. --science
  6. --geography
  7. --sports
  8. --entertainment
  9. --art
  10.  
  11. local h = {}
  12. local sc = {}
  13. local g = {}
  14. local a = {}
  15. local e = {}
  16. local sp = {}
  17.  
  18. h[#h+1] = {question = "What city did Martin Luther king die in?",
  19. a = "Memphis",
  20. b = "Seattle",
  21. c = "San Francisco",
  22. d = "Washington D.C."}
  23.  
  24. h[#h+1] = {question = "Which European city was divided by a wall by which capitalism was to the west and Communism was to the east?",
  25. a = "Berlin",
  26. b = "Madrid",
  27. c = "Paris",
  28. d = "London"}
  29.  
  30. h[#h+1] = {question = "The Cold War was a war of words and hostility mainly between the USSR and which country?",
  31. a = "USA",
  32. b = "Brazil",
  33. c = "Spain",
  34. d = "France"}
  35.  
  36. h[#h+1] = {question = "In 1969, three men were sent up into space in the Apollo missions. On what body in space did they land?",
  37. a = "Moon",
  38. b = "Sun",
  39. c = "Mars",
  40. d = "Venus"}
  41.  
  42. h[#h+1] = {question = "Tiananmen Square is a place in Asia that many view as the symbol of dictatorship and lack of free speech. In which country is Tiananmen Square?",
  43. a = "China",
  44. b = "Japan",
  45. c = "Russia",
  46. d = "India"}
  47.  
  48. h[#h+1] = {question = "Nelson Mandela is celebrated around the world as a man who advanced the issue of racism. Of what African country was he the president?",
  49. a = "South Africa",
  50. b = "Zimbabwe",
  51. c = "Egypt",
  52. d = "Libya"}
  53.  
  54. h[#h+1] = {question = "What was the name of the Princess of Wales who unfortunately died in 1997 as a result of a car crash in Paris?",
  55. a = "Diana",
  56. b = "Margaret",
  57. c = "Anne",
  58. d = "Mary"}
  59.  
  60. h[#h+1] = {question = "In 1997, who became the Labour Prime Minister of the United Kingdom?",
  61. a = "Tony Blair",
  62. b = "George Washington",
  63. c = "Abraham Lincoln",
  64. d = "George W. Bush"}
  65.  
  66. h[#h+1] = {question = "On the 11th of September, 2001, New York City was hit by a tragedy. Many died in a terrorist attack on which of these buildings?",
  67. a = "World Trade Center",
  68. b = "Empire State Building",
  69. c = "CN Tower",
  70. d = "Sears Tower"}
  71.  
  72. h[#h+1] = {question = "Saddam Hussein was the dictator of a Middle Eastern country in which a war began in 2003. What is the name of this country?",
  73. a = "Iraq",
  74. b = "Saudi Arabia",
  75. c = "Lebanon",
  76. d = "Israel"}
  77.  
  78. h[#h+1] = {question = "In 2008, the 29th Olympic Games mainly took place in which Asian city?",
  79. a = "Beijing",
  80. b = "New Delhi",
  81. c = "Tokyo",
  82. d = "Sydney"}
  83.  
  84. h[#h+1] = {question = "How many stripes was the american flag given?",
  85. a = "13",
  86. b = "10",
  87. c = "50",
  88. d = "7"}
  89.  
  90. h[#h+1] = {question = "When was the vietnam war?",
  91. a = "1954-1975",
  92. b = "1812-1821",
  93. c = "1802-1804",
  94. d = "1999-2013"}
  95.  
  96. h[#h+1] = {question = "Who of the following was one of John F. Kennedy's brothers?",
  97. a = "Robert",
  98. b = "Peter",
  99. c = "Michael",
  100. d = "Henry"}
  101.  
  102. h[#h+1] = {question = "What city was John F. Kennedy killed in?",
  103. a = "Dallas",
  104. b = "Portland",
  105. c = "Chicago",
  106. d = "Columbus"}
  107.  
  108. h[#h+1] = {question = "Who was the first president of the United States?",
  109. a = "George Washington",
  110. b = "Abraham Lincoln",
  111. c = "Teddy Roosevelt",
  112. d = "Lyndon B. Johnson"}
  113.  
  114. sc[#sc+1] = {question = "What is the largest planet in our solar system?",
  115. a = "Jupiter",
  116. b = "Mars",
  117. c = "Saturn",
  118. d = "Mercury"}
  119.  
  120. sc[#sc+1] = {question = "What is the abbreviation for the chemical element iodine?",
  121. a = "I",
  122. b = "IO",
  123. c = "ID",
  124. d = "IE"}
  125.  
  126. sc[#sc+1] = {question = "What type of doctor treats hair, skin, and nails?",
  127. a = "Dermatologist",
  128. b = "Neurologist",
  129. c = "Optometrist",
  130. d = "Allergist"}
  131.  
  132. sc[#sc+1] = {question = "What temperature is considered freezing?",
  133. a = "32",
  134. b = "50",
  135. c = "111",
  136. d = "22"}
  137.  
  138. sc[#sc+1] = {question = "Who developed penicillin?",
  139. a = "Alexander Fleming",
  140. b = "Thomas Lincoln",
  141. c = "Alexander the Great",
  142. d = "Sir Ralph Drake"}
  143.  
  144. sc[#sc+1] = {question = "Which of the following elements is not a metal?",
  145. a = "Sulfer",
  146. b = "Sodium",
  147. c = "Zinc",
  148. d = "Platinum"}
  149.  
  150. sc[#sc+1] = {question = "How many valence electrons does hydrogen have?",
  151. a = "1",
  152. b = "3",
  153. c = "7",
  154. d = "4"}
  155.  
  156. sc[#sc+1] = {question = "How many protons does carbon have?",
  157. a = "6",
  158. b = "3",
  159. c = "8",
  160. d = "108"}
  161.  
  162. sc[#sc+1] = {question = "What is the symbol for iron?",
  163. a = "Fe",
  164. b = "Cl",
  165. c = "C",
  166. d = "Br"}
  167.  
  168. sc[#sc+1] = {question = "What is the symbol for bromine?",
  169. a = "Br",
  170. b = "F",
  171. c = "Ni",
  172. d = "Bm"}
  173.  
  174. sc[#sc+1] = {question = "Which of the following elements is a non metal?",
  175. a = "Ne",
  176. b = "Co",
  177. c = "Ag",
  178. d = "Na"}
  179.  
  180. sc[#sc+1] = {question = "What type of doctor specializes in epilepsy?",
  181. a = "Neurologist",
  182. b = "Dermatologist",
  183. c = "Pediatrician",
  184. d = "Podiatrist"}
  185.  
  186. g[#g+1] = {question = "Which country has the largest amount of tornadoes?",
  187. a = "USA",
  188. b = "Mexico",
  189. c = "Japan",
  190. d = "Australia"}
  191.  
  192. g[#g+1] = {question = "What city do the 49ers play in?",
  193. a = "Santa Clara",
  194. b = "San Francisco",
  195. c = "Los Angeles",
  196. d = "San Jose"}
  197.  
  198. g[#g+1] = {question = "What is the official flower of California?",
  199. a = "Poppy",
  200. b = "Rose",
  201. c = "Carnation",
  202. d = "Tulip"}
  203.  
  204. g[#g+1] = {question = "Which of the following cities is in New York?",
  205. a = "Brooklyn",
  206. b = "Green Bay",
  207. c = "St. Paul",
  208. d = "St. Louis"}
  209.  
  210. g[#g+1] = {question = "Where is the Supreme Court of the United States located?",
  211. a = "Washington DC",
  212. b = "New York",
  213. c = "Dallas",
  214. d = "California"}
  215.  
  216. g[#g+1] = {question = "As of 2013, which country has the largest population?",
  217. a = "India",
  218. b = "USA",
  219. c = "Australia",
  220. d = "Japan"}
  221.  
  222. g[#g+1] = {question = "Where is Pearl Harbor?",
  223. a = "Hawaii",
  224. b = "New York",
  225. c = "London",
  226. d = "Israel"}
  227.  
  228. g[#g+1] = {question = "Niagara Falls is shared between the territory of which two countries?",
  229. a = "USA and Canada",
  230. b = "Russia and Ukraine",
  231. c = "Paris and Rome",
  232. d = "London and Italy"}
  233.  
  234. g[#g+1] = {question = "What two countries share a border?",
  235. a = "USA and Mexico",
  236. b = "England and Australia",
  237. c = "Russia and Spain",
  238. d = "Switzerland and Mexico"}
  239.  
  240. g[#g+1] = {question = "What city is the capital of California?",
  241. a = "Sacramento",
  242. b = "Los Angeles",
  243. c = "San Francisco",
  244. d = "Beverly Hills"}
  245.  
  246. g[#g+1] = {question = "Mount St. Helens is located in what state?",
  247. a = "Washington",
  248. b = "Missouri",
  249. c = "Texas",
  250. d = "North Dakota"}
  251.  
  252. g[#g+1] = {question = "What state was Bill Clinton born in?",
  253. a = "Arkansas",
  254. b = "Kansas",
  255. c = "Hawaii",
  256. d = "Florida"}
  257.  
  258. sp[#sp+1] = {question = "What team won the 2014 World Series?",
  259. a = "SF Giants",
  260. b = "Kansas City Royals",
  261. c = "LA Dodgers",
  262. d = "Oakland A's"}
  263.  
  264. sp[#sp+1] = {question = "Who was the quarterback of the 49ers in 2014?",
  265. a = "Colin Kaepernick",
  266. b = "Eli Manning",
  267. c = "Jerry Rice",
  268. d = "Alex Smith"}
  269.  
  270. sp[#sp+1] = {question = "Who is the mascot for the University of Oregon?",
  271. a = "Ducks",
  272. b = "Mustangs",
  273. c = "Lions",
  274. d = "Patriots"}
  275.  
  276. sp[#sp+1] = {question = "Which of the following was once a quarterback for the Green Bay Packers?",
  277. a = "Brett Farve",
  278. b = "Drew Brees",
  279. c = "Jerry Rice",
  280. d = "Troy Aikman"}
  281.  
  282. sp[#sp+1] = {question = "Which NFL team was the first to win 3 superbowls?",
  283. a = "Steelers",
  284. b = "Cowboys",
  285. c = "49ers",
  286. d = "Patriots"}
  287.  
  288. sp[#sp+1] = {question = "The English sports of rounders and cricket evolved into what American sport?",
  289. a = "Baseball",
  290. b = "Racquetball",
  291. c = "Soccer",
  292. d = "Paddleball"}
  293.  
  294. sp[#sp+1] = {question = "What NFL team was named after an Edger Allen Poe poem?",
  295. a = "The Baltimore Ravens",
  296. b = "The New York Giants",
  297. c = "The Miami Dolphins",
  298. d = "The Detroit Lions"}
  299.  
  300. sp[#sp+1] = {question = "What is the name of the sport played on ice, without skates, using a broom?",
  301. a = "Curling",
  302. b = "Hockey",
  303. c = "Skating",
  304. d = "Roller Derby"}
  305.  
  306. sp[#sp+1] = {question = "How many times have the Oakland A's won the world series?",
  307. a = "4",
  308. b = "2",
  309. c = "6",
  310. d = "0"}
  311.  
  312. sp[#sp+1] = {question = "How many NBA teams are located in California?",
  313. a = "4",
  314. b = "3",
  315. c = "2",
  316. d = "1"}
  317.  
  318. sp[#sp+1] = {question = "Who was awarded the Heisman Trophy in 2014?",
  319. a = "Marcus Mariota",
  320. b = "Troy Bradley",
  321. c = "Brent Marracini",
  322. d = "Aidan Foster"}
  323.  
  324. e[#e+1] = {question = "Who was the leading actress in the movie Gravity?",
  325. a = "Sandra Bullock",
  326. b = "Julia Roberts",
  327. c = "Jennifer Aniston",
  328. d = "Betty White"}
  329.  
  330. e[#e+1] = {question = "Which of the following people is a judge on The Voice?",
  331. a = "Adam Levin",
  332. b = "Tom Hanks",
  333. c = "Beyonce",
  334. d = "Kim Kardashian"}
  335.  
  336. e[#e+1] = {question = "Who sings the song, Jesus Take the Wheel?",
  337. a = "Carrie Underwood",
  338. b = "Taylor Swift",
  339. c = "Miley Cyrus",
  340. d = "Lady Gaga"}
  341.  
  342. e[#e+1] = {question = "What state was Dorothy from the Wizard of Oz from?",
  343. a = "Kansas",
  344. b = "Oregon",
  345. c = "California",
  346. d = "Utah"}
  347.  
  348. e[#e+1] = {question = "What classic film was called production 9401 during filming?",
  349. a = "Psycho",
  350. b = "The Wizard of Oz",
  351. c = "Rainman",
  352. d = "Spy Kids"}
  353.  
  354. e[#e+1] = {question = "Walter white was the star of what show?",
  355. a = "Breaking Bad",
  356. b = "Chicago PD",
  357. c = "Supernatural",
  358. d = "Constantine"}
  359.  
  360. e[#e+1] = {question = "Dean and Sam Winchester are from what TV show?",
  361. a = "Supernatural",
  362. b = "The Walking Dead",
  363. c = "Bob the Builder",
  364. d = "Constantine"}
  365.  
  366. e[#e+1] = {question = "Who played the role of the Terminator?",
  367. a = "Arnold Schwarzenegger",
  368. b = "Matt Damon",
  369. c = "Mark Wahlberg",
  370. d = "Denzel Washington"}
  371.  
  372. e[#e+1] = {question = "Carl is the son of who in the Walking Dead?",
  373. a = "Rick",
  374. b = "Shane",
  375. c = "Daryl",
  376. d = "Hershel"}
  377.  
  378. e[#e+1] = {question = "Who was Julia Roberts married to?",
  379. a = "Lyle Lovett",
  380. b = "Brad Pitt",
  381. c = "Jeffrey Donovan",
  382. d = "Tom Cruise"}
  383.  
  384. e[#e+1] = {question = "Where is Pixar Animation located?",
  385. a = "Emeryville, California",
  386. b = "Los Angeles, California",
  387. c = "New York, New York",
  388. d = "Seattle, Washington"}
  389.  
  390. e[#e+1] = {question = "Who directed the film Schlinder's List?",
  391. a = "Steven Spielberg",
  392. b = "Tom Cruise",
  393. c = "Tom Hanks",
  394. d = "Al Pacino"}
  395.  
  396. e[#e+1] = {question = "Who won the female country entertainer of the year in 2014?",
  397. a = "Miranda Lambert",
  398. b = "Martina McBride",
  399. c = "Carrie Underwood",
  400. d = "Faith Hill"}
  401.  
  402. a[#a+1] = {question = "How many years did the creator of the Mona Lisa spend just on painting the lips of Mona Lisa?",
  403. a = "12",
  404. b = "1",
  405. c = "5",
  406. d = "7"}
  407.  
  408. a[#a+1] = {question = "Who painted the Mona Lisa?",
  409. a = "Leonardi da Vinci",
  410. b = "Michaelangelo",
  411. c = "Pablo Picasso",
  412. d = "Vincent van Gogh"}
  413.  
  414. a[#a+1] = {question = "Who was Frida Kahlo married to?",
  415. a = "Diego Rivera",
  416. b = "Claude Monet",
  417. c = "Abraham Lincoln",
  418. d = "Michaelangelo"}
  419.  
  420. a[#a+1] = {question = "When you mix together red blue and yellow, what color is formed?",
  421. a = "Brown",
  422. b = "Orange",
  423. c = "Green",
  424. d = "Purple"}
  425.  
  426. a[#a+1] = {question = "Who created the painting known as the Blue Boy?",
  427. a = "Gainsborough",
  428. b = "Mona Lisa",
  429. c = "Leonardo Davinci",
  430. d = "Michaelangelo"}
  431.  
  432. a[#a+1] = {question = "Where is the Mona Lisa located?",
  433. a = "Paris, France",
  434. b = "Venice, Italy",
  435. c = "Rome, Italy",
  436. d = "London, England"}
  437.  
  438. a[#a+1] = {question = "Oil painting first appeared in the 15th century in which European country?",
  439. a = "Netherlands",
  440. b = "France",
  441. c = "Spain",
  442. d = "Italy"}
  443.  
  444. a[#a+1] = {question = "Who painted the Sistine Chapel?",
  445. a = "Michaelangelo",
  446. b = "Leonardo Davinci",
  447. c = "Pablo Picasso",
  448. d = "Michael Jordan"}
  449.  
  450. a[#a+1] = {question = "Who painted the Scream?",
  451. a = "Edvard Munch",
  452. b = "Pablo Picasso",
  453. c = "Claude Mone",
  454. d = "Andy Warhol"}
  455.  
  456. a[#a+1] = {question = "Identify the author of this fictional work related to the sea: The Rime of the Ancient Mariner",
  457. a = "Samuel Taylor Coleridge",
  458. b = "Sam Winchester",
  459. c = "Penny Longstocking",
  460. d = "Tom Cruise"}
  461.  
  462. a[#a+1] = {question = "What famous painter died in 1987?",
  463. a = "Andy Warhol",
  464. b = "Gustav Klimt",
  465. c = "Piet Nodrian",
  466. d = "J.M.W. Turner"}
  467.  
  468. a[#a+1] = {question = "When did the artist Rembrandt die?",
  469. a = "1669",
  470. b = "1825",
  471. c = "1510",
  472. d = "1985"}
  473.  
  474. --Everything after this line was converted by bluej at 4:05 PM 12/26/2014
  475. ---------------------------------------------------
  476.  
  477. a[#a+1] = {question = "When did the artist Rembrandt die?",
  478. a = "1669",
  479. b = "1825",
  480. c = "1510",
  481. d = "1985"}
  482.  
  483. a[#a+1] = {question = "Where is the Sistine Chapel",
  484. a = "Italy",
  485. b = "France",
  486. c = "England",
  487. d = "Spain"}
  488.  
  489. a[#a+1] = {question = "Minimalism is a type of what?",
  490. a = "Art",
  491. b = "Teaching",
  492. c = "Learning",
  493. d = "Driving"}
  494.  
  495. a[#a+1] = {question = "What is a type of painting?",
  496. a = "Watercolor",
  497. b = "Palanto",
  498. c = "Moral",
  499. d = "Tethering"}
  500.  
  501. a[#a+1] = {question = "When was the Renaissance period?",
  502. a = "1400's",
  503. b = "1600's",
  504. c = "1500's",
  505. d = "1800's"}
  506.  
  507. a[#a+1] = {question = "What instrument sits near the ground as you play?",
  508. a = "Cello",
  509. b = "Clarinet",
  510. c = "Flute",
  511. d = "Saxophone"}
  512.  
  513. a[#a+1] = {question = "What colors make purple?",
  514. a = "blue & red",
  515. b = "green & yellow",
  516. c = "yellow & red",
  517. d = "white and red"}
  518.  
  519. a[#a+1] = {question = "What was Beethoven's full name?",
  520. a = "Ludwig van Beethoven",
  521. b = "Leonard DaLizzo Beethoven",
  522. c = "Orlandi Beethoven",
  523. d = "Paul van Beethoven"}
  524.  
  525. a[#a+1] = {question = "What was the composer Mozart's full name?",
  526. a = "Wolfgang Amadeus Mozart",
  527. b = "Amadeus Mozart",
  528. c = "Henry James Mozart",
  529. d = "King James Mozart"}
  530.  
  531. a[#a+1] = {question = "Who painted the Starry Night painting?",
  532. a = "Vincent Van Gogh",
  533. b = "Pablo Picasso",
  534. c = "Leonardo da Vinci",
  535. d = "Diego Rivera"}
  536.  
  537. a[#a+1] = {question = "When was the painting Starry Night created?",
  538. a = "1889",
  539. b = "1825",
  540. c = "1715",
  541. d = "1903"}
  542.  
  543. a[#a+1] = {question = "Where was Leonardo da Vinci born?",
  544. a = "Vinci, Italy",
  545. b = "Paris, France",
  546. c = "London, England",
  547. d = "Venice, Italy"}
  548.  
  549. a[#a+1] = {question = "What year did Leonardo da Vinci die?",
  550. a = "1519",
  551. b = "1627",
  552. c = "1873",
  553. d = "1465"}
  554.  
  555. a[#a+1] = {question = "Who is a well known American photographer?",
  556. a = "Ansel Adams",
  557. b = "John Simpson",
  558. c = "Jacob Schnitzer",
  559. d = "Maureen Kennedy"}
  560.  
  561. a[#a+1] = {question = "Who is a famous artist?",
  562. a = "All of the above",
  563. b = "Robert Frank",
  564. c = "Walker Evans",
  565. d = "Gordon Parks"}
  566.  
  567. e[#e+1] = {question = "Who was nicknamed the Brown Boxer?",
  568. a = "Joe Louis",
  569. b = "Muhammad Ali",
  570. c = "George Foreman",
  571. d = "Sylvester Stallone"}
  572.  
  573. e[#e+1] = {question = "What female was the lead actress in the movie Kramer v. Kramer?",
  574. a = "Meryl Streep",
  575. b = "Sandra Bullock",
  576. c = "Gwyneth Paltrow",
  577. d = "Liv Tyler"}
  578.  
  579. e[#e+1] = {question = "When were the first academy awards held?",
  580. a = "1929",
  581. b = "1900",
  582. c = "1951",
  583. d = "1972"}
  584.  
  585. e[#e+1] = {question = "What movie did Henry Fonda win an Oscar for?",
  586. a = "On Golden Pond",
  587. b = "When Harry Met Sally",
  588. c = "It's a Wonderful Life",
  589. d = "Gone with the Wind"}
  590.  
  591. e[#e+1] = {question = "What was the Rat Pack",
  592. a = "A group of actors",
  593. b = "Exterminators",
  594. c = "Members of a gang",
  595. d = "Musical band"}
  596.  
  597. e[#e+1] = {question = "Who played the voice of Buzz Lightyear in the movie Toy Story?",
  598. a = "Tim Allen",
  599. b = "Tom Hanks",
  600. c = "Leonardo DeCaprio",
  601. d = "Johnny Depp"}
  602.  
  603. e[#e+1] = {question = "Who was an actor in the Titanic movie?",
  604. a = "Leonardo DiCaprio",
  605. b = "Andy Garcia",
  606. c = "Paul Newman",
  607. d = "Martin Sheen"}
  608.  
  609. e[#e+1] = {question = "What show is Donald Trump on?",
  610. a = "Celebrity Apprentice",
  611. b = "The Voice",
  612. c = "Jeopardy",
  613. d = "Wheel of Fortune"}
  614.  
  615. e[#e+1] = {question = "What movie is Meg Ryan well known for?",
  616. a = "When Harry met Sally",
  617. b = "Gravity",
  618. c = "Narnia",
  619. d = "The Blindside"}
  620.  
  621. e[#e+1] = {question = "Who was Marilyn Monroe married to?",
  622. a = "All of the above",
  623. b = "Joe DiMaggio",
  624. c = "James Dougherty",
  625. d = "Arthur Miller"}
  626.  
  627. e[#e+1] = {question = "How many characters can you type in Twitter?",
  628. a = "144",
  629. b = "120",
  630. c = "200",
  631. d = "75"}
  632.  
  633. e[#e+1] = {question = "What is the card game Blackjack also known as?",
  634. a = "Twenty one",
  635. b = "Poker",
  636. c = "One",
  637. d = "Monopoly"}
  638.  
  639. e[#e+1] = {question = "Where does Bill Gates live?",
  640. a = "Seattle, WA",
  641. b = "Spokane, WA",
  642. c = "Detroit, MI",
  643. d = "Eugene, OR"}
  644.  
  645. e[#e+1] = {question = "Where is the Grand Ole Opry located?",
  646. a = "Tennessee",
  647. b = "Arkansas",
  648. c = "Wisconsin",
  649. d = "Michigan"}
  650.  
  651. e[#e+1] = {question = "Where is the Rock and Roll Hall of Fame located?",
  652. a = "Cleveland, OH",
  653. b = "Dayton, OH",
  654. c = "Louisville, KY",
  655. d = "Boston, MA"}
  656.  
  657. e[#e+1] = {question = "Where is the Country Music Hall of Fame located?",
  658. a = "Nashville, TN",
  659. b = "Dallas, TX",
  660. c = "Atlanta, GA",
  661. d = "Houston, TX"}
  662.  
  663. e[#e+1] = {question = "Who is Tricia Yearwood married to?",
  664. a = "Garth Brooks",
  665. b = "Blake Shelton",
  666. c = "Brad Pitt",
  667. d = "Johnny Depp"}
  668.  
  669. e[#e+1] = {question = "What television show was Tim Allen on?",
  670. a = "Home Improvement",
  671. b = "American Idol",
  672. c = "White Collar",
  673. d = "Breaking Bad"}
  674.  
  675. e[#e+1] = {question = "Who wrote the Harry Potter book series?",
  676. a = "J.K. Rowling",
  677. b = "Jason Rowling",
  678. c = "Maxine Allen-McCowan",
  679. d = "David Dexter"}
  680.  
  681. e[#e+1] = {question = "Who was Wilma Flintstone married to?",
  682. a = "Fred",
  683. b = "Barney",
  684. c = "Marty",
  685. d = "Jefferson"}
  686.  
  687. e[#e+1] = {question = "What does the television network ABC stand for?",
  688. a = "American Broadcasting Company",
  689. b = "American Broadcasting Corporation",
  690. c = "Alive Broadcast Network",
  691. d = "American Biography Corporation"}
  692.  
  693. e[#e+1] = {question = "Who is Wynonna Judd's mom?",
  694. a = "Naomi",
  695. b = "Breezen",
  696. c = "Melissa",
  697. d = "Angela"}
  698.  
  699. e[#e+1] = {question = "What was year Tom Hanks born?",
  700. a = "1956",
  701. b = "1980",
  702. c = "1973",
  703. d = "1967"}
  704.  
  705. e[#e+1] = {question = "What actress was in the movie The Bodyguard?",
  706. a = "Whitney Houston",
  707. b = "Sara Evans",
  708. c = "Marilyn Monroe",
  709. d = "Liv Tyler"}
  710.  
  711. e[#e+1] = {question = "Who is Beyonce married to?",
  712. a = "Jay-Z",
  713. b = "Kanye West",
  714. c = "Justin Bieber",
  715. d = "Adam Levine"}
  716.  
  717. e[#e+1] = {question = "Where did the Pet Rock originate from in the 1970's?",
  718. a = "Los Gatos",
  719. b = "San Diego",
  720. c = "Plymouth",
  721. d = "Monroe"}
  722.  
  723. e[#e+1] = {question = "Who wrote Lord of the Rings?",
  724. a = "J.R.R. Tolkien",
  725. b = "J.K. Rowling",
  726. c = "Edgar Allan Poe",
  727. d = "Barbara Park"}
  728.  
  729. e[#e+1] = {question = "When did Dreyer's Ice Cream begin?",
  730. a = "1928",
  731. b = "1945",
  732. c = "1967",
  733. d = "1999"}
  734.  
  735. e[#e+1] = {question = "Who developed the Nook?",
  736. a = "Barnes & Noble",
  737. b = "Samsung",
  738. c = "Apple",
  739. d = "Microsoft"}
  740.  
  741. e[#e+1] = {question = "Who are two Superheros popularly known as a team?",
  742. a = "Batman & Robin",
  743. b = "Superman & Sacagawea",
  744. c = "Spiderman & Sponge Bob",
  745. d = "Alice & Belle"}
  746.  
  747. e[#e+1] = {question = "Who is Mike Tyson?",
  748. a = "Boxer ",
  749. b = "Rapper",
  750. c = "President",
  751. d = "Senator"}
  752.  
  753. e[#e+1] = {question = "Who played the character Hannah Montana on Disney?",
  754. a = "Miley Cyrus",
  755. b = "Sabrina Lopez",
  756. c = "Taylor Swift",
  757. d = "Beyonce"}
  758.  
  759. e[#e+1] = {question = "Who was an actor in Seinfeld",
  760. a = "Jerry Seinfeld",
  761. b = "Tim Allen",
  762. c = "Tom Cruise",
  763. d = "Robert Redford"}
  764.  
  765. e[#e+1] = {question = "What is a popular place to buy apps?",
  766. a = "Google Play",
  767. b = "Apps R Us",
  768. c = "Intel",
  769. d = "HSN"}
  770.  
  771. e[#e+1] = {question = "Who sang the song Sweet Caroline?",
  772. a = "Neil Diamond",
  773. b = "Michael Jackson",
  774. c = "Michael Buble",
  775. d = "Frank Sinatra"}
  776.  
  777. e[#e+1] = {question = "Who is Blake Shelton married to?",
  778. a = "Miranda Lambert",
  779. b = "Connie Chung",
  780. c = "Gwen Stafani",
  781. d = "Shakira "}
  782.  
  783. e[#e+1] = {question = "Who is one of Kris Jenner's daughters?",
  784. a = "Kim Kardashian",
  785. b = "Beyonee",
  786. c = "Haily Duff",
  787. d = "Halle Berry"}
  788.  
  789. e[#e+1] = {question = "Who won an Academy Award in 2002 for Monster's Ball?",
  790. a = "Halle Berry",
  791. b = "Sandra Bullock",
  792. c = "Jennifer Aniston",
  793. d = "Julianne Hough"}
  794.  
  795. e[#e+1] = {question = "What actress was in the movie Safe Haven",
  796. a = "Julianne Hough",
  797. b = "Angelina Jolie",
  798. c = "Katie Holmes",
  799. d = "Cameron Diaz"}
  800.  
  801. e[#e+1] = {question = "Who is the Beverly Hills Housewife that is married to David Foster?",
  802. a = "Yolanda",
  803. b = "Kyle",
  804. c = "Kim",
  805. d = "Brandi"}
  806.  
  807. e[#e+1] = {question = "Who was the big purple dinosaur that aired on PBS?",
  808. a = "Barney",
  809. b = "Giant",
  810. c = "Oscar",
  811. d = "Felix"}
  812.  
  813. e[#e+1] = {question = "What company can you rent movies from?",
  814. a = "Netflix",
  815. b = "Starbucks",
  816. c = "Target",
  817. d = "Home Depot"}
  818.  
  819. e[#e+1] = {question = "What is The Gravity?",
  820. a = "Movie",
  821. b = "Book",
  822. c = "Rock Band",
  823. d = "TV Show"}
  824.  
  825. e[#e+1] = {question = "How many judges are on the television show The Voice",
  826. a = "4",
  827. b = "3",
  828. c = "7",
  829. d = "5"}
  830.  
  831. e[#e+1] = {question = "Who made the iPhone?",
  832. a = "Apple",
  833. b = "Samsung",
  834. c = "Amazon",
  835. d = "Microsoft"}
  836.  
  837. e[#e+1] = {question = "What actress was not in the movie The Other Woman?",
  838. a = "Sandra Bullock",
  839. b = "Kate Upton",
  840. c = "Leslie Mann",
  841. d = "Cameron Diaz"}
  842.  
  843. e[#e+1] = {question = "What actor was in the movie Safe Haven with Julianne Hough",
  844. a = "Josh Dumael",
  845. b = "Derek Hough",
  846. c = "Tom Selleck",
  847. d = "Jack Nicholson"}
  848.  
  849. g[#g+1] = {question = "What state is Naples in?",
  850. a = "Florida",
  851. b = "Kentucky",
  852. c = "Alabama",
  853. d = "Maryland"}
  854.  
  855. g[#g+1] = {question = "What country is known for it's pyramids?",
  856. a = "Egypt",
  857. b = "United States",
  858. c = "Canada",
  859. d = "Hawaii"}
  860.  
  861. g[#g+1] = {question = "What is the capital of Wyoming",
  862. a = "Cheyenne",
  863. b = "Austin",
  864. c = "Milwaukee",
  865. d = "Spokane"}
  866.  
  867. g[#g+1] = {question = "What state is known as the Cheese State?",
  868. a = "Wisconsin",
  869. b = "Mississippi",
  870. c = "Delaware",
  871. d = "Iowa"}
  872.  
  873. g[#g+1] = {question = "What river is in Paris?",
  874. a = "His",
  875. b = "Willamette",
  876. c = "Michigan",
  877. d = "The zoola"}
  878.  
  879. g[#g+1] = {question = "What river runs through the Grand Canyon",
  880. a = "Colorado",
  881. b = "Mississippi",
  882. c = "Willamette",
  883. d = "Bosom"}
  884.  
  885. g[#g+1] = {question = "Where is Mount Kilimanjaro",
  886. a = "Tanzania",
  887. b = "Saudi Arabia",
  888. c = "New Zealand ",
  889. d = "Ethiopia "}
  890.  
  891. g[#g+1] = {question = "What bay is Alcatraz located?",
  892. a = "San Francisco Bay",
  893. b = "Dallas",
  894. c = "Minnesota",
  895. d = "Twin Lakes Bay"}
  896.  
  897. g[#g+1] = {question = "What is the capital of Haiti?",
  898. a = "Port-au-Prince",
  899. b = "Munich",
  900. c = "Trinidad",
  901. d = "Baghdad"}
  902.  
  903. g[#g+1] = {question = "If it is 4:00 P.M. in New York, what time is it in California?",
  904. a = "1:00 P.M.",
  905. b = "2:00 P.M",
  906. c = "5:00 P.M.",
  907. d = "7:00 P.M."}
  908.  
  909. g[#g+1] = {question = "What is the official language of France?",
  910. a = "French",
  911. b = "English",
  912. c = "German",
  913. d = "Spanish"}
  914.  
  915. g[#g+1] = {question = "Where is Chad?",
  916. a = "Central Africa",
  917. b = "In a store",
  918. c = "Spain",
  919. d = "Sudan"}
  920.  
  921. g[#g+1] = {question = "If you are in Salem, what state are you in?",
  922. a = "All of the above",
  923. b = "Oregon",
  924. c = "Massachusetts",
  925. d = "Nebraska"}
  926.  
  927. g[#g+1] = {question = "What is the capital of Nebraska",
  928. a = "Lincoln",
  929. b = "Omaha",
  930. c = "Portland",
  931. d = "Anchorage"}
  932.  
  933. g[#g+1] = {question = "What time zone is Portland, Oregon in?",
  934. a = "Pacific",
  935. b = "Eastern",
  936. c = "Midwest",
  937. d = "Central"}
  938.  
  939. g[#g+1] = {question = "Where is Athens?",
  940. a = "Greece",
  941. b = "Indiana",
  942. c = "Colorado",
  943. d = "Saudi Arabia"}
  944.  
  945. g[#g+1] = {question = "What continent is China located?",
  946. a = "Asia",
  947. b = "Africa",
  948. c = "North America",
  949. d = "South America"}
  950.  
  951. g[#g+1] = {question = "Which state is nicknamed the Hoosier State?",
  952. a = "Indiana",
  953. b = "Illinois",
  954. c = "Missouri",
  955. d = "Utah"}
  956.  
  957. g[#g+1] = {question = "The first person to reach the deep bottom of Lake Michigan was?",
  958. a = "J. Val Klump",
  959. b = "Denton McClinton",
  960. c = "Sir Oliver Henry III",
  961. d = "R. Stein"}
  962.  
  963. g[#g+1] = {question = "Where is Mary Kay Cosmetics headquarters located?",
  964. a = "Addison, TX",
  965. b = "Houston, TX",
  966. c = "Beverly Hills, CA",
  967. d = "Cleveland, OH"}
  968.  
  969. g[#g+1] = {question = "Which city is the Kentucky Derby held?",
  970. a = "Louisville",
  971. b = "Atlanta",
  972. c = "New Orleans",
  973. d = "Nashville"}
  974.  
  975. g[#g+1] = {question = "Which lake of the five great lakes in North America is wholly within the United States?",
  976. a = "Lake Michigan",
  977. b = "Lake Superior",
  978. c = "Lake Erie",
  979. d = "Lake Huron"}
  980.  
  981. g[#g+1] = {question = "What is the capital of Russia?",
  982. a = "Moscow",
  983. b = "Neya",
  984. c = "Orsk",
  985. d = "Chekhov"}
  986.  
  987. g[#g+1] = {question = "What is the nickname for Gilroy, California",
  988. a = "Garlic Capital of the World",
  989. b = "Gilroy Festival",
  990. c = "Peanut Factory",
  991. d = "Wine of the world"}
  992.  
  993. g[#g+1] = {question = "What country is New Delhi located in?",
  994. a = "India",
  995. b = "Lithuania",
  996. c = "Russia",
  997. d = "Israel "}
  998.  
  999. g[#g+1] = {question = "Where is the Grand Canyon?",
  1000. a = "Arizona",
  1001. b = "California",
  1002. c = "New Mexico",
  1003. d = "Texas"}
  1004.  
  1005. g[#g+1] = {question = "Who was the first climber to reach Mt. Everest?",
  1006. a = "Sir Edmund Hillary",
  1007. b = "Montgomery Jacobson",
  1008. c = "Lance Armstrong",
  1009. d = "Michael Montgomery"}
  1010.  
  1011. g[#g+1] = {question = "Which is not a continent?",
  1012. a = "China",
  1013. b = "Asia",
  1014. c = "Africa",
  1015. d = "North America"}
  1016.  
  1017. g[#g+1] = {question = "Where us the Great Wall of China?",
  1018. a = "China",
  1019. b = "Japan",
  1020. c = "Moscow",
  1021. d = "Beirut"}
  1022.  
  1023. g[#g+1] = {question = "What state is St. Louis in?",
  1024. a = "Missouri",
  1025. b = "Minnesota",
  1026. c = "Ohio",
  1027. d = "Idaho"}
  1028.  
  1029. g[#g+1] = {question = "What state borders Canada?",
  1030. a = "Minnesota",
  1031. b = "Oregon",
  1032. c = "Florida",
  1033. d = "Kentucky"}
  1034.  
  1035. g[#g+1] = {question = "What is the capital of New Hampshire?",
  1036. a = "Concord",
  1037. b = "Denver",
  1038. c = "Montgomery",
  1039. d = "Atlanta"}
  1040.  
  1041. g[#g+1] = {question = "How many Great Lakes of North America are there?",
  1042. a = "5",
  1043. b = "3",
  1044. c = "8",
  1045. d = "2"}
  1046.  
  1047. g[#g+1] = {question = "Buenos Aires is the capital of what country?",
  1048. a = "Argentina",
  1049. b = "Italy",
  1050. c = "Spain",
  1051. d = "Australia"}
  1052.  
  1053. g[#g+1] = {question = "Where is Juneau located?",
  1054. a = "Alaska",
  1055. b = "Hawaii",
  1056. c = "Massachusetts",
  1057. d = "Alabama"}
  1058.  
  1059. g[#g+1] = {question = "What state is Mount St. Helens in?",
  1060. a = "Washington",
  1061. b = "Idaho",
  1062. c = "Hawaii",
  1063. d = "New Jersey"}
  1064.  
  1065. g[#g+1] = {question = "Where was Julius Caesar born?",
  1066. a = "Italy",
  1067. b = "France",
  1068. c = "Ukraine",
  1069. d = "Luxembourg"}
  1070.  
  1071. g[#g+1] = {question = "The Arabian Sea is a region of what ocean?",
  1072. a = "Indian",
  1073. b = "Pacific",
  1074. c = "Atlantic",
  1075. d = "Arctic"}
  1076.  
  1077. g[#g+1] = {question = "What city is known as the Mile High City?",
  1078. a = "Denver, CO",
  1079. b = "Aspen, CO",
  1080. c = "Leavenworth, KS",
  1081. d = "Boise, ID"}
  1082.  
  1083. g[#g+1] = {question = "What is the official language of Uruguay?",
  1084. a = "Spanish",
  1085. b = "English",
  1086. c = "French",
  1087. d = "German"}
  1088.  
  1089. g[#g+1] = {question = "What continent is the United States in?",
  1090. a = "North America",
  1091. b = "South America",
  1092. c = "Asia",
  1093. d = "Africa"}
  1094.  
  1095. g[#g+1] = {question = "Which country does not share a border with Belgium?",
  1096. a = "Iraq",
  1097. b = "France",
  1098. c = "Germany",
  1099. d = "Netherlands"}
  1100.  
  1101. g[#g+1] = {question = "What state is St. Paul in?",
  1102. a = "Minnesota",
  1103. b = "South Dakota",
  1104. c = "North Dakota",
  1105. d = "Oregon"}
  1106.  
  1107. g[#g+1] = {question = "Where is American Airlines hub?",
  1108. a = "Fort Worth",
  1109. b = "Alaska",
  1110. c = "Chicago",
  1111. d = "Boston"}
  1112.  
  1113. g[#g+1] = {question = "Where is the statue of liberty located?",
  1114. a = "Ellis Island, New York",
  1115. b = "Washington, D.C.",
  1116. c = "New York, New York",
  1117. d = "Seattle, Washington"}
  1118.  
  1119. g[#g+1] = {question = "What country is Tanzania in?",
  1120. a = "East Africa",
  1121. b = "England",
  1122. c = "Peru",
  1123. d = "Russia"}
  1124.  
  1125. g[#g+1] = {question = "Where is the college USC located?",
  1126. a = "Los Angeles",
  1127. b = "South Dakota",
  1128. c = "Colorado",
  1129. d = "Boston"}
  1130.  
  1131. g[#g+1] = {question = "Salt Lake City is in what state?",
  1132. a = "Utah",
  1133. b = "Idaho",
  1134. c = "Indiana",
  1135. d = "North Dakota"}
  1136.  
  1137. g[#g+1] = {question = "What country is the clocktower Big Ben in?",
  1138. a = "England",
  1139. b = "Portugal",
  1140. c = "Mexico",
  1141. d = "Canada"}
  1142.  
  1143. g[#g+1] = {question = "If you are at 1600 Pennsylvania Avenue, where would you be?",
  1144. a = "White House",
  1145. b = "Arlington Cemetery",
  1146. c = "Smithsonian",
  1147. d = "Hard Rock Coffee in New York"}
  1148.  
  1149. h[#h+1] = {question = "Justice that gave the oath to Lyndon B. Johnson after JFK was assassinated?",
  1150. a = "Judge Sarah T. Hughes",
  1151. b = "Supreme Court Justice Elena Kagan",
  1152. c = "Supreme Court Justice Ruth Bader Ginsburg",
  1153. d = "Judge Margaret Simpson"}
  1154.  
  1155. h[#h+1] = {question = "After JFK's assassination where was Lyndon B. Johnson sworn in?",
  1156. a = "Air Force One",
  1157. b = "The White House",
  1158. c = "Dallas, Texas",
  1159. d = "Air Force Two"}
  1160.  
  1161. h[#h+1] = {question = "Who saved the portrait of George Washington from being burned?",
  1162. a = "Dolley Madison",
  1163. b = "Martha Washington",
  1164. c = "Mary Todd Lincoln",
  1165. d = "Lady Bird Johnson"}
  1166.  
  1167. h[#h+1] = {question = "What is the name of the plane that a president travels in?",
  1168. a = "Air Force One",
  1169. b = "Air Force Two",
  1170. c = "Presidential plane",
  1171. d = "Commander in Chief"}
  1172.  
  1173. h[#h+1] = {question = "Last state to be admitted to the Union?",
  1174. a = "Hawaii",
  1175. b = "Alaska",
  1176. c = "California",
  1177. d = "Florida"}
  1178.  
  1179. h[#h+1] = {question = "Where was Marin Luther King Jr. born?",
  1180. a = "Atlanta",
  1181. b = "Boston",
  1182. c = "New Orleans",
  1183. d = "Fargo"}
  1184.  
  1185. h[#h+1] = {question = "Who was called the first Lady of Civil Rights?",
  1186. a = "Rosa Parks",
  1187. b = "Oprah Winfrey",
  1188. c = "Maya Angelou",
  1189. d = "Eleanor Roosevelt"}
  1190.  
  1191. h[#h+1] = {question = "What woman is known for the Underground Railroad",
  1192. a = "Harriet Tubman",
  1193. b = "Rosa Parks",
  1194. c = "Eleanor Roosevelt",
  1195. d = "Dolley Madison"}
  1196.  
  1197. h[#h+1] = {question = "Who is Nelson Mandela?",
  1198. a = "Former President of South Africa",
  1199. b = "Prime Minister of Sudan",
  1200. c = "Civil Rights Leader",
  1201. d = "Congressman"}
  1202.  
  1203. h[#h+1] = {question = "President that served the least amount of time?",
  1204. a = "William Henry Harrison",
  1205. b = "Richard Nixon",
  1206. c = "Gerald Ford",
  1207. d = "John F. Kennedy"}
  1208.  
  1209. h[#h+1] = {question = "Which president gave the longest inaugural address in history?",
  1210. a = "William Henry Harrison",
  1211. b = "Abraham Lincoln",
  1212. c = "Bill Clinton",
  1213. d = "Lyndon B. Johnson"}
  1214.  
  1215. h[#h+1] = {question = "Who was the first woman to fly across the Atlantic?",
  1216. a = "Amelia Earhart",
  1217. b = "Susan B. Anthony",
  1218. c = "Helen Keller",
  1219. d = "Sacagawea"}
  1220.  
  1221. h[#h+1] = {question = "Where is the Arlington National Cemetery located?",
  1222. a = "Arlington, VA",
  1223. b = "Washington D.C.",
  1224. c = "New York, NY",
  1225. d = "Dover, DE"}
  1226.  
  1227. h[#h+1] = {question = "What is a branch of the government?",
  1228. a = "All of the above ",
  1229. b = "Executive",
  1230. c = "Judicial",
  1231. d = "Legislative (Congress)"}
  1232.  
  1233. h[#h+1] = {question = "Who was president in 1814 when the White House was burned down by the British?",
  1234. a = "James Madison",
  1235. b = "Abraham Lincoln",
  1236. c = "George Washington",
  1237. d = "John Adams"}
  1238.  
  1239. h[#h+1] = {question = "How many Senators are there?",
  1240. a = "100",
  1241. b = "50",
  1242. c = "150",
  1243. d = "25"}
  1244.  
  1245. h[#h+1] = {question = "Who is known for their tractors?",
  1246. a = "John Deere",
  1247. b = "Sears",
  1248. c = "Rotten Robbie",
  1249. d = "Calvin Klein"}
  1250.  
  1251. h[#h+1] = {question = "How many members are in the House of Representatives?",
  1252. a = "435",
  1253. b = "100",
  1254. c = "222",
  1255. d = "50"}
  1256.  
  1257. h[#h+1] = {question = "Which vacuum has the same name as a former president?",
  1258. a = "Hoover",
  1259. b = "Johnson",
  1260. c = "Nixon",
  1261. d = "Adams"}
  1262.  
  1263. h[#h+1] = {question = "Which president is carved into Mt. Rushmore?",
  1264. a = "All of the above",
  1265. b = "George Washington",
  1266. c = "Thomas Jefferson",
  1267. d = "Abraham Lincoln"}
  1268.  
  1269. h[#h+1] = {question = "What party was Benito Mussolini the leader of?",
  1270. a = "Fascist",
  1271. b = "Democrat",
  1272. c = "Communist",
  1273. d = "Tupperware"}
  1274.  
  1275. h[#h+1] = {question = "Who wrote the book Omoo?",
  1276. a = "Herman Melville",
  1277. b = "Edgar Allan Poe",
  1278. c = "Anne Frank",
  1279. d = "Sir Francis Drake"}
  1280.  
  1281. h[#h+1] = {question = "Who accompanied the Lewis & Clark Expedition as an interpreter?",
  1282. a = "Sacagawea",
  1283. b = "Anne Frank",
  1284. c = "George Washington",
  1285. d = "The Donner Party"}
  1286.  
  1287. h[#h+1] = {question = "Where was the Donner Party trying to get to?",
  1288. a = "California?",
  1289. b = "Michigan",
  1290. c = "Ohio",
  1291. d = "Canada"}
  1292.  
  1293. h[#h+1] = {question = "Who is not an author?",
  1294. a = "Harrison Jonathon Ford",
  1295. b = "Washington Irving",
  1296. c = "Edgar Allan Poe",
  1297. d = "Jonathan Coe"}
  1298.  
  1299. h[#h+1] = {question = "When did the Louisiana Purchase occur?",
  1300. a = "1803",
  1301. b = "1800",
  1302. c = "1719",
  1303. d = "1902"}
  1304.  
  1305. h[#h+1] = {question = "Who is famous for her diary?",
  1306. a = "Anne Frank",
  1307. b = "Mary Todd",
  1308. c = "Martha Washington",
  1309. d = "Hilary Clinton"}
  1310.  
  1311. h[#h+1] = {question = "Who was Ulysses S. Grant?",
  1312. a = "President",
  1313. b = "Author",
  1314. c = "Senator",
  1315. d = "Magician"}
  1316.  
  1317. h[#h+1] = {question = "Who wrote A Christmas Carol?",
  1318. a = "Charles Dickens",
  1319. b = "Edgar Allan Poe",
  1320. c = "Humphrey Bogart",
  1321. d = "Bob Barker"}
  1322.  
  1323. h[#h+1] = {question = "Who was the 39th president?",
  1324. a = "Jimmy Carter",
  1325. b = "Gerald Ford",
  1326. c = "Richard Nixon",
  1327. d = "Lyndon B. Johnson"}
  1328.  
  1329. h[#h+1] = {question = "Who is one of the people that developed the television?",
  1330. a = "Philo Farnsworth",
  1331. b = "Samuel Harris",
  1332. c = "Johnathon Mongomery",
  1333. d = "Marciel McDonald"}
  1334.  
  1335. h[#h+1] = {question = "What type of communication was there during the Civil War?",
  1336. a = "Telegraph",
  1337. b = "Email",
  1338. c = "Voicemail",
  1339. d = "Radiography"}
  1340.  
  1341. h[#h+1] = {question = "What former president was also the Governor of California?",
  1342. a = "Ronald Reagan",
  1343. b = "Arnold Schwarzenegger",
  1344. c = "Gerald Ford",
  1345. d = "Franklin Roosevelt"}
  1346.  
  1347. h[#h+1] = {question = "Who was John F. Kennedy married to?",
  1348. a = "Jacqueline Kennedy Onassis",
  1349. b = "Mary Martin Kennedy",
  1350. c = "Alexandria Kennedy",
  1351. d = "Maria Kennedy Martin"}
  1352.  
  1353. h[#h+1] = {question = "Who defeated Goliath?",
  1354. a = "David",
  1355. b = "John",
  1356. c = "Abe",
  1357. d = "Moses"}
  1358.  
  1359. h[#h+1] = {question = "When was the Declaration of Independence signed?",
  1360. a = "1776",
  1361. b = "1750",
  1362. c = "1805",
  1363. d = "1819"}
  1364.  
  1365. h[#h+1] = {question = "Who is Hugo Chavez?",
  1366. a = "Former President of Venezuela",
  1367. b = "Former President of Cuba",
  1368. c = "Former President of Russia",
  1369. d = "Prime Minister of Israel"}
  1370.  
  1371. h[#h+1] = {question = "Who was Greek goddess Athena the daughter of?",
  1372. a = "Zeus",
  1373. b = "Poseidon",
  1374. c = "Apollo",
  1375. d = "Clymene"}
  1376.  
  1377. h[#h+1] = {question = "When was Lithuania's Act of Independence signed?",
  1378. a = "1918",
  1379. b = "1927",
  1380. c = "1803",
  1381. d = "1964"}
  1382.  
  1383. h[#h+1] = {question = "Who was a president of the United States?",
  1384. a = "George Washington",
  1385. b = "John McCain",
  1386. c = "George Clooney",
  1387. d = "Nancy Pelosi"}
  1388.  
  1389. h[#h+1] = {question = "When did William Shakespeare die?",
  1390. a = "1616",
  1391. b = "1550",
  1392. c = "1703",
  1393. d = "1827"}
  1394.  
  1395. h[#h+1] = {question = "When was Mahatma Ghandi assassinated?",
  1396. a = "1948",
  1397. b = "1927",
  1398. c = "1901",
  1399. d = "1998"}
  1400.  
  1401. h[#h+1] = {question = "Where was Mahatma Ghandi assassinated?",
  1402. a = "New Delhi",
  1403. b = "Kiev",
  1404. c = "Paris",
  1405. d = "Vilnuis"}
  1406.  
  1407. h[#h+1] = {question = "What did the case Roe v. Wade pertain to?",
  1408. a = "Abortion",
  1409. b = "Death Penalty",
  1410. c = "Civil Rights",
  1411. d = "Sexual Discrimination"}
  1412.  
  1413. h[#h+1] = {question = "What is Franklin D. Roosevelt's middle name?",
  1414. a = "Delano",
  1415. b = "David",
  1416. c = "Denton",
  1417. d = "Dwight"}
  1418.  
  1419. h[#h+1] = {question = "When did Adolf Hitler die?",
  1420. a = "1945",
  1421. b = "1923",
  1422. c = "1951",
  1423. d = "1911"}
  1424.  
  1425. h[#h+1] = {question = "Where was Adolf Hitler born?",
  1426. a = "Austria",
  1427. b = "Germany",
  1428. c = "France",
  1429. d = "Japan"}
  1430.  
  1431. h[#h+1] = {question = "Where was Cleopatra born?",
  1432. a = "Egypt",
  1433. b = "Israel",
  1434. c = "Sudan",
  1435. d = "Hungary"}
  1436.  
  1437. h[#h+1] = {question = "Who is credited with creating the telephone?",
  1438. a = "Alexander Graham Bell",
  1439. b = "Sir Isaac Newton",
  1440. c = "Benjamin Franklin",
  1441. d = "Al Gore"}
  1442.  
  1443. h[#h+1] = {question = "What president was impeached?",
  1444. a = "Bill Clinton",
  1445. b = "John Adams",
  1446. c = "Franklin Roosevelt",
  1447. d = "Dwight Eisenhower"}
  1448.  
  1449. h[#h+1] = {question = "Who was the first Director of the FBI",
  1450. a = "John Edgar Hoover",
  1451. b = "Harry Truman",
  1452. c = "Grover Cleveland",
  1453. d = "John McCain"}
  1454.  
  1455. h[#h+1] = {question = "How many judges are on the Supreme Court",
  1456. a = "9",
  1457. b = "6",
  1458. c = "7",
  1459. d = "10"}
  1460.  
  1461. h[#h+1] = {question = "Who nominates a Supreme Court Justice",
  1462. a = "President",
  1463. b = "Vice President",
  1464. c = "Congress",
  1465. d = "Current Justices"}
  1466.  
  1467. h[#h+1] = {question = "Who is Winston Churchill?",
  1468. a = "Primer Minister of the United Kingdom",
  1469. b = "President of France",
  1470. c = "Ambassador to Spain",
  1471. d = "United States Senator"}
  1472.  
  1473. h[#h+1] = {question = "Who was Robert Frost?",
  1474. a = "Poet",
  1475. b = "Doctor",
  1476. c = "Scientist",
  1477. d = "Congressman"}
  1478.  
  1479. h[#h+1] = {question = "When was the war of 1812?",
  1480. a = "1812",
  1481. b = "1830",
  1482. c = "1902",
  1483. d = "1627"}
  1484.  
  1485. sc[#sc+1] = {question = "What is Melatonin?",
  1486. a = "A hormone made by the Pineal Gland.",
  1487. b = "A hormone made by the heart.",
  1488. c = "A layer of skin.",
  1489. d = "An antibiotic."}
  1490.  
  1491. sc[#sc+1] = {question = "What is the largest organ of the body?",
  1492. a = "Skin",
  1493. b = "Liver",
  1494. c = "Heart",
  1495. d = "Brain"}
  1496.  
  1497. sc[#sc+1] = {question = "What part of the body would you see a Podiatrist for?",
  1498. a = "Feet",
  1499. b = "Brain",
  1500. c = "Stomach",
  1501. d = "Vision"}
  1502.  
  1503. sc[#sc+1] = {question = "What is glucose?",
  1504. a = "Sugar",
  1505. b = "Fat",
  1506. c = "Water",
  1507. d = "Element"}
  1508.  
  1509. sc[#sc+1] = {question = "How many chromosomes does each human have located in the nucleus of the cell?",
  1510. a = "46",
  1511. b = "13",
  1512. c = "57",
  1513. d = "19"}
  1514.  
  1515. sc[#sc+1] = {question = "If you have Acrophobia what are you afraid of?",
  1516. a = "Heights",
  1517. b = "Bugs",
  1518. c = "Water",
  1519. d = "Germs"}
  1520.  
  1521. sc[#sc+1] = {question = "What is a cloud that looks puffy and often look like cotton?",
  1522. a = "Cumulus",
  1523. b = "Metrogist",
  1524. c = "Rain",
  1525. d = "Forfeit"}
  1526.  
  1527. sc[#sc+1] = {question = "If you have Bacteriophobia what are you afraid of?",
  1528. a = "Bacteria",
  1529. b = "Snails",
  1530. c = "Concrete",
  1531. d = "Coffee"}
  1532.  
  1533. sc[#sc+1] = {question = "If you have Enochlophobia what are you afraid of?",
  1534. a = "Crowds",
  1535. b = "Ants",
  1536. c = "Noise",
  1537. d = "Vomiting"}
  1538.  
  1539. sc[#sc+1] = {question = "Who was the theory of Newton's law of gravity based on?",
  1540. a = "Sir Isaac Newton",
  1541. b = "Albert Einstein",
  1542. c = "Marcus Newton",
  1543. d = "Edgar Allan Poe"}
  1544.  
  1545. sc[#sc+1] = {question = "What is the approximate total square feet of the skin?",
  1546. a = "20 feet",
  1547. b = "10 feet ",
  1548. c = "13 feet",
  1549. d = "4 feet"}
  1550.  
  1551. sc[#sc+1] = {question = "What is Epilepsy?",
  1552. a = "A disorder of the brain's electrical system.",
  1553. b = "A heart condition.",
  1554. c = "A muscular disease.",
  1555. d = "A vitamin deficiency."}
  1556.  
  1557. sc[#sc+1] = {question = "When does a heart attack occur?",
  1558. a = "When the blood flow to the heart is blocked.",
  1559. b = "When too much blood is rushing to the heart.",
  1560. c = "When a person has lost too much blood from an injury.",
  1561. d = "When blood is misdirected to the liver."}
  1562.  
  1563. sc[#sc+1] = {question = "How many layers does the skin have?",
  1564. a = "3",
  1565. b = "2",
  1566. c = "4",
  1567. d = "1"}
  1568.  
  1569. sc[#sc+1] = {question = "Approximately how many pounds does the liver weigh?",
  1570. a = "3 pounds",
  1571. b = "5 pounds",
  1572. c = "7 pounds",
  1573. d = "1 pound"}
  1574.  
  1575. sc[#sc+1] = {question = "What is the third largest and major organ in the body?",
  1576. a = "Brain",
  1577. b = "Heart",
  1578. c = "Lungs",
  1579. d = "Liver"}
  1580.  
  1581. sc[#sc+1] = {question = "What medical condition is Epistaxis?",
  1582. a = "Nosebleeds",
  1583. b = "Ulcers",
  1584. c = "Arthritis",
  1585. d = "Amnesia"}
  1586.  
  1587. sc[#sc+1] = {question = "What is insulin?",
  1588. a = "Regulates glucose in the blood",
  1589. b = "Medicine used after a stroke",
  1590. c = "Blood that flows to the heart",
  1591. d = "Oxygen in the blood"}
  1592.  
  1593. sc[#sc+1] = {question = "What is Diabetes?",
  1594. a = "High levels of sugar in the blood",
  1595. b = "Chronic back pain",
  1596. c = "Allergic reaction from bees",
  1597. d = "Heart murmur"}
  1598.  
  1599. sc[#sc+1] = {question = "What drug was once used in Coca-Cola",
  1600. a = "Cocaine",
  1601. b = "Methamphetamine",
  1602. c = "Heroin",
  1603. d = "Crack"}
  1604.  
  1605. sp[#sp+1] = {question = "Who won the first four minute mile in Track & Field?",
  1606. a = "Roger Bannister",
  1607. b = "Mark Moon",
  1608. c = "Jeremy Spitz",
  1609. d = "Jerry Rice"}
  1610.  
  1611. sp[#sp+1] = {question = "Where were the 2004 Summer Olympics held?",
  1612. a = "Athens, Greece",
  1613. b = "Boise, Idaho",
  1614. c = "Rome, Italy",
  1615. d = "Venice, Italy"}
  1616.  
  1617. sp[#sp+1] = {question = "Who hosted the Winter Olympics in 2002?",
  1618. a = "United States",
  1619. b = "Germany",
  1620. c = "Greece",
  1621. d = "Switzerland"}
  1622.  
  1623. sp[#sp+1] = {question = "Who is Dorothy Hamill?",
  1624. a = "Figure Skater",
  1625. b = "Gymnastic",
  1626. c = "Lawyer",
  1627. d = "Historian"}
  1628.  
  1629. sp[#sp+1] = {question = "What city is known for their NHL team the Sharks?",
  1630. a = "San Jose",
  1631. b = "Los Angeles",
  1632. c = "Denver",
  1633. d = "Austin"}
  1634.  
  1635. sp[#sp+1] = {question = "What team was Terry Bradshaw the quarterback for?",
  1636. a = "Pittsburgh Steelers",
  1637. b = "Green Bay Packers",
  1638. c = "New England Patriots",
  1639. d = "Cleveland Browns"}
  1640.  
  1641. sp[#sp+1] = {question = "Who won Superbowl XII in 1978?",
  1642. a = "Dallas Cowboys",
  1643. b = "Denver Broncos",
  1644. c = "Oakland Raiders",
  1645. d = "Kansas City Chiefs"}
  1646.  
  1647. sp[#sp+1] = {question = "The Heat basketball team plays in what state?",
  1648. a = "Florida",
  1649. b = "Chicago",
  1650. c = "Illinois",
  1651. d = "Colorado"}
  1652.  
  1653. sp[#sp+1] = {question = "Which team has never won the world series?",
  1654. a = "All of the above",
  1655. b = "Texas Rangers",
  1656. c = "Milwaukee Brewers",
  1657. d = "San Diego Padres"}
  1658.  
  1659. sp[#sp+1] = {question = "Who did Jackie Robinson play baseball for?",
  1660. a = "Brooklyn Dodgers",
  1661. b = "San Francisco Giants",
  1662. c = "Texas Rangers",
  1663. d = "San Diego Padres"}
  1664.  
  1665. sp[#sp+1] = {question = "What team has never won a Super Bowl?",
  1666. a = "All of the above",
  1667. b = "Arizona Cardinals",
  1668. c = "Atlanta Falcons",
  1669. d = "Tennessee Titans"}
  1670.  
  1671. sp[#sp+1] = {question = "What sport do the San Antonio Spurs play?",
  1672. a = "Basketball",
  1673. b = "Baseball",
  1674. c = "Hockey",
  1675. d = "Soccer"}
  1676.  
  1677. sp[#sp+1] = {question = "What is one of teams Shaquille O'Neal played for?",
  1678. a = "Boston Celtics",
  1679. b = "Sacramento Kings",
  1680. c = "Golden State Warriors",
  1681. d = "Dallas Mavericks"}
  1682.  
  1683. sp[#sp+1] = {question = "Who owns the Dallas Mavericks",
  1684. a = "Mark Cuban",
  1685. b = "Donald Trump",
  1686. c = "John York",
  1687. d = "Tom Landry"}
  1688.  
  1689. sp[#sp+1] = {question = "What company has a shoe named Air Jordan which is named after Michael Jordan?",
  1690. a = "Nike",
  1691. b = "Adidas",
  1692. c = "Row",
  1693. d = "Kodak"}
  1694.  
  1695. sp[#sp+1] = {question = "What state has an NFL team called the Colts?",
  1696. a = "Indianapolis",
  1697. b = "Texas",
  1698. c = "Arkansas",
  1699. d = "Alabama"}
  1700.  
  1701. sp[#sp+1] = {question = "What National Football Team has been publicly owned since 1923?",
  1702. a = "Green Bay Packers",
  1703. b = "Minnesota Vikings",
  1704. c = "Atlanta Falcons",
  1705. d = "New England Patriots"}
  1706.  
  1707. sp[#sp+1] = {question = "Where is the Iditarod Trail Sled Dog Race located?",
  1708. a = "Alaska",
  1709. b = "Colorado",
  1710. c = "Canada",
  1711. d = "Switzerland"}
  1712.  
  1713. sp[#sp+1] = {question = "In 2014 what was the name of the stadium the San Francisco 49'ers played at?",
  1714. a = "Levi Stadium",
  1715. b = "AT&T Park",
  1716. c = "Kodak Center",
  1717. d = "Lambo Field"}
  1718.  
  1719. g[#g+1] = {question = "Where is the Liberty Bell",
  1720. a = "Philadelphia, PA",
  1721. b = "Boston, MA",
  1722. c = "Stanford, CT",
  1723. d = "Biloxi, MS"}
  1724.  
  1725. g[#g+1] = {question = "What country is also the name of a movie?",
  1726. a = "Madagascar",
  1727. b = "Spain",
  1728. c = "Peru",
  1729. d = "Mexico"}
  1730.  
  1731. g[#g+1] = {question = 'What state is called the "Show Me" state?',
  1732. a = "Missouri",
  1733. b = "Arkansas",
  1734. c = "Wyoming",
  1735. d = "Indianapolis"}
  1736.  
  1737. h[#h+1] = {question = "Who won a Nobel Prize in Literature?",
  1738. a = "Ernest Hemingway",
  1739. b = "Francis Stewart",
  1740. c = "Deona Dayana",
  1741. d = "Murphy Brown"}
  1742.  
  1743. h[#h+1] = {question = "What president was in office when Watergate was made public?",
  1744. a = "Nixon",
  1745. b = "Reagan ",
  1746. c = "Kennedy",
  1747. d = "Obama"}
  1748.  
  1749. e[#e+1] = {question = "Princess Belle was in what Disney movie?",
  1750. a = "Beauty & the Beast",
  1751. b = "Aladdin",
  1752. c = "Frozen",
  1753. d = "Cinderella"}
  1754.  
  1755. e[#e+1] = {question = "If you want to Tweet someone what would you need?",
  1756. a = "Twitter",
  1757. b = "Facebook",
  1758. c = "Email",
  1759. d = "Instagram"}
  1760.  
  1761. e[#e+1] = {question = "What is a Selfie?",
  1762. a = "Self portrait",
  1763. b = "Type of fish",
  1764. c = "Bank",
  1765. d = "Clothing brand"}
  1766.  
  1767. a[#a+1] = {question = "How big is the Last Supper?",
  1768. a = "15 feet 1 inch x 29 feet",
  1769. b = "16 feet x 16 feet",
  1770. c = "12 feet x 30 feet",
  1771. d = "8 feet b 6 feet"}
  1772.  
  1773. a[#a+1] = {question = "Who painted the Last Supper?",
  1774. a = "Leonardo da Vinci",
  1775. b = "Pablo Picasso",
  1776. c = "Diego Rivera",
  1777. d = "Claude Monet"}
  1778.  
  1779. a[#a+1] = {question = "What culture was common in Frida Kahlo's paintings?",
  1780. a = "Mexican culture",
  1781. b = "European culture",
  1782. c = "Indian culture",
  1783. d = "American culture"}
  1784.  
  1785. a[#a+1] = {question = 'Who said, "I paint myself because I am so often alone and because I am the subject I know best"?',
  1786. a = "Frida Kahlo",
  1787. b = "Diego Rivera",
  1788. c = "Leonardo da Vinci",
  1789. d = "Pablo Picasso"}
  1790.  
  1791. a[#a+1] = {question = "How is oil paint made?",
  1792. a = "Mixing pigment containing the color with oil",
  1793. b = "Mixing pastel colors",
  1794. c = "Mixing oil and flour with color",
  1795. d = "Heating mineral oil with water"}
  1796.  
  1797. a[#a+1] = {question = "In 1954 Henri Matisse died from?",
  1798. a = "Heart attack",
  1799. b = "Seizure",
  1800. c = "Brain tumor ",
  1801. d = "Stroke"}
  1802.  
  1803. a[#a+1] = {question = "What store is pottery sold at?",
  1804. a = "Pottery Barn",
  1805. b = "Pottery Store",
  1806. c = "Pottery Express",
  1807. d = "Pottery Unlimited"}
  1808.  
  1809. e[#e+1] = {question = "Who wrote the book the Da Vinci Code?",
  1810. a = "Dan Brown",
  1811. b = "Roger Madison",
  1812. c = "Steven Spielberg",
  1813. d = "Megyn Kelly"}
  1814.  
  1815. e[#e+1] = {question = "Where was the singer Celine Dion born?",
  1816. a = "Canada",
  1817. b = "Mexico",
  1818. c = "United States",
  1819. d = "Haiti"}
  1820.  
  1821. e[#e+1] = {question = "Who directed the movie the Da Vinci Code?",
  1822. a = "Ron Howard",
  1823. b = "Steven Spielberg",
  1824. c = "Tom Montgomery",
  1825. d = "Andy Garcia"}
  1826.  
  1827. e[#e+1] = {question = "What was the actress Shirley Temple's full name?",
  1828. a = "Shirley Temple Black",
  1829. b = "Shirley Temple Johnson",
  1830. c = "Shirley Temple Monroe",
  1831. d = "Shirley Temple Fitzgerald"}
  1832.  
  1833. e[#e+1] = {question = "What is not a railroad in Monopoly?",
  1834. a = "Connecticut",
  1835. b = "Reading",
  1836. c = "Pennsylvania",
  1837. d = "Short Line"}
  1838.  
  1839. e[#e+1] = {question = "When did the Beatles first perform in the United States?",
  1840. a = "1964",
  1841. b = "1952",
  1842. c = "1975",
  1843. d = "1901"}
  1844.  
  1845. e[#e+1] = {question = "What is an arcade game that eats dots while trying not to be eaten by its enemies?",
  1846. a = "Pac-Man",
  1847. b = "Monopoly",
  1848. c = "Ping Pong",
  1849. d = "Pinball"}
  1850.  
  1851. e[#e+1] = {question = 'Who sang the song "Happy Birthday, Mr. President" to JFK?',
  1852. a = "Marilyn Monroe",
  1853. b = "Jane Fonda",
  1854. c = "Katy Perry",
  1855. d = "Barbra Streisand"}
  1856.  
  1857. e[#e+1] = {question = "Who founded the company Mary Kay?",
  1858. a = "Mary Kay Ash",
  1859. b = "Mary Kay Martin",
  1860. c = "Mary Kay Stewart",
  1861. d = "Mary Kay Simpson"}
  1862.  
  1863. g[#g+1] = {question = "What is the U.S, minimum wage as of January 1, 2014?",
  1864. a = "$7.25 per hour",
  1865. b = "$10.00 per hour",
  1866. c = "$8.00 per hour",
  1867. d = "$9.25 per hour"}
  1868.  
  1869. g[#g+1] = {question = "Which is the largest ocean?",
  1870. a = "Pacific",
  1871. b = "Atlantic",
  1872. c = "Indian",
  1873. d = "Arctic"}
  1874.  
  1875. g[#g+1] = {question = "Where is Harvard University located?",
  1876. a = "Massachusetts",
  1877. b = "Tennessee",
  1878. c = "Nebraska",
  1879. d = "Michigan"}
  1880.  
  1881. g[#g+1] = {question = "What state does not have self-pumping gas?",
  1882. a = "Oregon",
  1883. b = "Kansas",
  1884. c = "Michigan",
  1885. d = "Delaware"}
  1886.  
  1887. g[#g+1] = {question = "What city in Oregon had the first one-way streets?",
  1888. a = "Eugene",
  1889. b = "Corvallis",
  1890. c = "Beaverton",
  1891. d = "Medford"}
  1892.  
  1893. g[#g+1] = {question = "As of 1989 what is the shortest river in the U.S.?",
  1894. a = "Roe River",
  1895. b = "Mississippi",
  1896. c = "Bason",
  1897. d = "Willamette"}
  1898.  
  1899. g[#g+1] = {question = "What is Portland, Oregon known as?",
  1900. a = "City of Roses",
  1901. b = "Paradise Valley",
  1902. c = "Wetlands",
  1903. d = "Beautiful Land"}
  1904.  
  1905. g[#g+1] = {question = "What monument is not in Washington D.C.",
  1906. a = "Statue of Liberty",
  1907. b = "Washington Monument",
  1908. c = "Lincoln Memorial",
  1909. d = "United States Capitol"}
  1910.  
  1911. g[#g+1] = {question = "What district is known to be a part of the hippie movement?",
  1912. a = "Haight-Asbury",
  1913. b = "Memphis, Tennessee",
  1914. c = "Alcatraz",
  1915. d = "Eugene, Oregon"}
  1916.  
  1917. g[#g+1] = {question = "What state is Branson in?",
  1918. a = "Missouri",
  1919. b = "New Jersey",
  1920. c = "Texas",
  1921. d = "New Hampshire"}
  1922.  
  1923. sc[#sc+1] = {question = "What is Pneumonia?",
  1924. a = "Lung infection",
  1925. b = "Sore throat",
  1926. c = "Skin infection",
  1927. d = "Heart failure"}
  1928.  
  1929. sc[#sc+1] = {question = "As of 1982 how tall is the tallest person in the world?",
  1930. a = "8 feet 2 inches",
  1931. b = "7 feet 4 inches",
  1932. c = "9 feet 1 inches",
  1933. d = "7 feet 9 inches"}
  1934.  
  1935. sc[#sc+1] = {question = "What is the symbol for Oxygen on the Periodic Table?",
  1936. a = "O",
  1937. b = "Ox",
  1938. c = "Og",
  1939. d = "ON"}
  1940.  
  1941. sc[#sc+1] = {question = "What is the symbol for Copper on the Periodic Table?",
  1942. a = "Cu",
  1943. b = "C",
  1944. c = "Cp",
  1945. d = "CR"}
  1946.  
  1947. sc[#sc+1] = {question = "What is the symbol for Magnesium on the Periodic Table?",
  1948. a = "Mg",
  1949. b = "M",
  1950. c = "Mn",
  1951. d = "MG"}
  1952.  
  1953. sc[#sc+1] = {question = "What is the symbol for Sulfur on the Periodic Table?",
  1954. a = "S",
  1955. b = "Su",
  1956. c = "Sf",
  1957. d = "Ur"}
  1958.  
  1959. sc[#sc+1] = {question = "What is the atomic number for Carbon?",
  1960. a = "6",
  1961. b = "13",
  1962. c = "17",
  1963. d = "8"}
  1964.  
  1965. sp[#sp+1] = {question = "Where is the New York Giants football team stadium located?",
  1966. a = "New Jersey",
  1967. b = "New York",
  1968. c = "Virginia",
  1969. d = "Massachusetts"}
  1970.  
  1971. sp[#sp+1] = {question = "What sport is Tiger Woods known for?",
  1972. a = "Golf",
  1973. b = "Basketball",
  1974. c = "Skiing",
  1975. d = "Football"}
  1976.  
  1977. h[#h+1] = {question = "Who is Stanford University named after?",
  1978. a = "Leland Stanford",
  1979. b = "William Stanford",
  1980. c = "Michelle Stanford-Barney",
  1981. d = "Natasha Greensburg"}
  1982.  
  1983. h[#h+1] = {question = "What genre of books is Agatha Christie known for writing?",
  1984. a = "Crime",
  1985. b = "Romance",
  1986. c = "Science Fiction",
  1987. d = "History"}
  1988.  
  1989. h[#h+1] = {question = "Who wrote the book The Great Gatsby",
  1990. a = "F. Scott Fitzgerald",
  1991. b = "Martin Sheen",
  1992. c = "Agatha Christie",
  1993. d = "Tiffany Richards"}
  1994.  
  1995. h[#h+1] = {question = "As of 2014 how many horses have won all three of the triple crowns?",
  1996. a = "11",
  1997. b = "22",
  1998. c = "50",
  1999. d = "99"}
  2000.  
  2001. sc[#sc+1] = {question = "What is a Hypochondriac?",
  2002. a = "Being paranoid about your health",
  2003. b = "Afraid of spiders",
  2004. c = "Afraid of Germs",
  2005. d = "Afraid to take medication"}
  2006.  
  2007. sc[#sc+1] = {question = "Which is not a fundamental state of matter?",
  2008. a = "Hair",
  2009. b = "Gas",
  2010. c = "Solid",
  2011. d = "Liquid"}
  2012.  
  2013. sc[#sc+1] = {question = "What are most people likely to use Botox for?",
  2014. a = "Wrinkles",
  2015. b = "Hair Conditioner",
  2016. c = "Disinfect bacteria",
  2017. d = "Wash clothes with"}
  2018.  
  2019. h[#h+1] = {question = "If you are Frenetic what are you?",
  2020. a = "Frantic, Frenzied",
  2021. b = "Faithful, Loyal",
  2022. c = "Dishonest, Liar",
  2023. d = "Happy, Calm"}
  2024.  
  2025. a[#a+1] = {question = "What author wrote Animal Farm?",
  2026. a = "George Orwell",
  2027. b = "Marcus Jones",
  2028. c = "Fitzgerald Do",
  2029. d = "Edgar Allan Poe"}
  2030.  
  2031. a[#a+1] = {question = "What author wrote War & Peace?",
  2032. a = "Leo Tolstoy",
  2033. b = "Ernest Hemingway",
  2034. c = "Maya Angelou",
  2035. d = "Oprah Winfrey"}
  2036.  
  2037. a[#a+1] = {question = "Who wrote Pride & Prejudice?",
  2038. a = "Jane Austen",
  2039. b = "Charles Dickens",
  2040. c = "Leo Tolsoy",
  2041. d = "Frank Sinatra"}
  2042.  
  2043. a[#a+1] = {question = "Who wrote Tom Sawyer?",
  2044. a = "Mark Twain",
  2045. b = "Leonardo da Vinci",
  2046. c = "Edgar Allan Poe",
  2047. d = "George Orwell"}
  2048.  
  2049. a[#a+1] = {question = "Who wrote Romeo & Juliet?",
  2050. a = "William Shakespeare",
  2051. b = "George Washington",
  2052. c = "Benjamin Franklin",
  2053. d = "Charles Dickens"}
  2054.  
  2055. a[#a+1] = {question = "Wrote the Grapes of Wrath?",
  2056. a = "John Steinbeck",
  2057. b = "Homer",
  2058. c = "Jane Austen",
  2059. d = "John Adams"}
  2060.  
  2061. a[#a+1] = {question = "Who wrote Wuthering Heights?",
  2062. a = "Emily Bronte",
  2063. b = "Jane Austen",
  2064. c = "Mary Todd Lincoln",
  2065. d = "Martha Washington"}
  2066.  
  2067. a[#a+1] = {question = "Who wrote the Chronicles of Narnia?",
  2068. a = "C.S. Lewis",
  2069. b = "J.K. Rowling",
  2070. c = "Samuel Johnson",
  2071. d = "Beatrix Potter"}
  2072.  
  2073. a[#a+1] = {question = "Who is know for Candide?",
  2074. a = "Voltaire",
  2075. b = "C.S. Lewis",
  2076. c = "Edgar Allen Poe",
  2077. d = "Franklin Roosevelt"}
  2078.  
  2079. a[#a+1] = {question = "Who was a student of Plato?",
  2080. a = "Aristotle",
  2081. b = "Benedict Arnold",
  2082. c = "William Shakespeare",
  2083. d = "Anne Frank"}
  2084.  
  2085. a[#a+1] = {question = "Who wrote Leaves of Grass?",
  2086. a = "Walt Whitman",
  2087. b = "Voltaire",
  2088. c = "John Keats",
  2089. d = "John Stuart Mill"}
  2090.  
  2091. a[#a+1] = {question = "What poet & author lived between 1928-2014?",
  2092. a = "Maya Angelou",
  2093. b = "Jane Austen",
  2094. c = "Aristotle",
  2095. d = "Walt Whitman"}
  2096.  
  2097. h[#h+1] = {question = "How many stripes does the American flag have?",
  2098. a = "13",
  2099. b = "12",
  2100. c = "26",
  2101. d = "9"}
  2102.  
  2103. h[#h+1] = {question = "Was Aristotle a?",
  2104. a = "Philosopher",
  2105. b = "Actor",
  2106. c = "Comedian",
  2107. d = "President"}
  2108.  
  2109. h[#h+1] = {question = "Where was Karl Marx born?",
  2110. a = "Germany",
  2111. b = "Serbia",
  2112. c = "France",
  2113. d = "United States"}
  2114.  
  2115. h[#h+1] = {question = 'What does the motto "E Pluribus Unum" mean?',
  2116. a = "One out of many",
  2117. b = "Spend wisely",
  2118. c = "Give generously",
  2119. d = "Plentiful rewards await"}
  2120.  
  2121. h[#h+1] = {question = "What was the White House originally called?",
  2122. a = "Executive Mansion",
  2123. b = "Presidential Suite",
  2124. c = "Commander in Chief ",
  2125. d = "Presidential Residence"}
  2126.  
  2127. h[#h+1] = {question = "Approximately how many names are on the wall of the Vietnam Memorial?",
  2128. a = "58,000",
  2129. b = "24,000",
  2130. c = "60,000",
  2131. d = "100,000"}
  2132.  
  2133. h[#h+1] = {question = "Where is the Thomas Jefferson Memorial located?",
  2134. a = "Washington, D.C.",
  2135. b = "New York, NY",
  2136. c = "Arlington, VA",
  2137. d = "Springfield, VA"}
  2138.  
  2139. h[#h+1] = {question = "When was the Thomas Jefferson Memorial opened?",
  2140. a = "1943",
  2141. b = "1902",
  2142. c = "1975",
  2143. d = "1893"}
  2144.  
  2145. h[#h+1] = {question = "Who founded Planned Parenthood?",
  2146. a = "Margaret Sanger",
  2147. b = "Dixie Madison",
  2148. c = "Lady B. Johnson",
  2149. d = "Gloria Steinham"}
  2150.  
  2151. h[#h+1] = {question = "When was Planned Parenthood founded?",
  2152. a = "1916",
  2153. b = "1927",
  2154. c = "1885",
  2155. d = "1950"}
  2156.  
  2157. h[#h+1] = {question = 'When is it noted that the construction for the "Great Wall" began?',
  2158. a = "221 B.C.",
  2159. b = "500 B.C.",
  2160. c = "1400's",
  2161. d = "1600's"}
  2162.  
  2163. h[#h+1] = {question = 'Approximately how many people died during the construction of the "Great Wall"?',
  2164. a = "400,000",
  2165. b = "1,000,000",
  2166. c = "250,000",
  2167. d = "10,000"}
  2168.  
  2169. h[#h+1] = {question = "When was Queen Elizabeth I born?",
  2170. a = "September 7, 1533",
  2171. b = "January 6, 1827",
  2172. c = "May 11, 1661",
  2173. d = "April 2, 1833"}
  2174.  
  2175. a[#a+1] = {question = 'What was the first "Harry Potter" book?',
  2176. a = "Harry Potter and the Philosopher's Stone",
  2177. b = "Harry Potter and the Scorer",
  2178. c = "Harry Potter",
  2179. d = "Harry Potter and the Edge"}
  2180.  
  2181. a[#a+1] = {question = "How any novels did Emily Bronte write?",
  2182. a = "1",
  2183. b = "5",
  2184. c = "23",
  2185. d = "10"}
  2186.  
  2187. a[#a+1] = {question = 'How many times did Ernest Hemingway revise his book "A Farewell to Arms"?',
  2188. a = "39",
  2189. b = "12",
  2190. c = "15",
  2191. d = "2"}
  2192.  
  2193. a[#a+1] = {question = "Where was J.R.R. Tolkien born?",
  2194. a = "South Africa",
  2195. b = "Peru",
  2196. c = "Afghanistan",
  2197. d = "Scotland"}
  2198.  
  2199. a[#a+1] = {question = "When did Charles Dickens die?",
  2200. a = "1870",
  2201. b = "1912",
  2202. c = "1872",
  2203. d = "1935"}
  2204.  
  2205. a[#a+1] = {question = 'Who wrote "Notre-Dame de Paris"?',
  2206. a = "Victor Hugo",
  2207. b = "Charles Dickens",
  2208. c = "Alexdre Dumas",
  2209. d = "Stuart Little"}
  2210.  
  2211. a[#a+1] = {question = 'In "Where the Wild Things Are" who is the boy that imagines things?',
  2212. a = "Max",
  2213. b = "Dan",
  2214. c = "Stevie",
  2215. d = "Curt"}
  2216.  
  2217. a[#a+1] = {question = 'Who wrote "Moby-Dick"?',
  2218. a = "Herman Melville",
  2219. b = "Jean-Paul Sartre",
  2220. c = "Smithoni Sandrel",
  2221. d = "Foster Grant"}
  2222.  
  2223. a[#a+1] = {question = 'Who wrote "The Three Muskateers"?',
  2224. a = "Alexandre Dumas & Auguste Maqute",
  2225. b = "Jane Austin",
  2226. c = "Nancy Reed",
  2227. d = "Peter Najoy"}
  2228.  
  2229. a[#a+1] = {question = 'Who wrote the "First Circle"?',
  2230. a = "Aleksandr Solzhenitsyn",
  2231. b = "Alexander Theroux",
  2232. c = "Stuart Little",
  2233. d = "Johnny Walker"}
  2234.  
  2235. a[#a+1] = {question = 'Who is the author of "Two Gentlemen of Verona"?',
  2236. a = "Christopher Marlowe",
  2237. b = "Edith Warton",
  2238. c = "Italo Calvino",
  2239. d = "William Shakespeare"}
  2240.  
  2241. a[#a+1] = {question = 'Who wrote the "Canterbury Tales"?',
  2242. a = "Geoffrey Chaucer",
  2243. b = "William Shakespeare",
  2244. c = "George Orwell",
  2245. d = "William Lackland"}
  2246.  
  2247. a[#a+1] = {question = "When did Ludwig van Beethoven die?",
  2248. a = "1827",
  2249. b = "1900",
  2250. c = "1553",
  2251. d = "1400"}
  2252.  
  2253. a[#a+1] = {question = "Where did Ludwig van Beethoven die?",
  2254. a = "Vienna",
  2255. b = "Kiev",
  2256. c = "Prague",
  2257. d = "Austria"}
  2258.  
  2259. a[#a+1] = {question = 'Who wrote "Mice and Men"?',
  2260. a = "John Steinbeck & Kevin Hinkle",
  2261. b = "John Adams",
  2262. c = "Quincy Jones",
  2263. d = "Jane Austin"}
  2264.  
  2265. a[#a+1] = {question = "What stained the cheek & right arm of the Statue of Liberty?",
  2266. a = "Bicarbonate of soda",
  2267. b = "Rain",
  2268. c = "Bleach",
  2269. d = "Snow"}
  2270.  
  2271. a[#a+1] = {question = "What parts of the Statue of Liberty were left streaked when it was cleaned in 1986?",
  2272. a = "Left cheek & parts of right arm",
  2273. b = "Both arms",
  2274. c = "All of the face",
  2275. d = "Dress"}
  2276.  
  2277. a[#a+1] = {question = "Who wrote Gulliver's Travels",
  2278. a = "Jonathan Swift",
  2279. b = "Mark Twain",
  2280. c = "Barbara Sheridan",
  2281. d = "Ben Franklin"}
  2282.  
  2283. a[#a+1] = {question = "In Spain when does the yearly Bull running occur?",
  2284. a = "July 7-14",
  2285. b = "June 1-5",
  2286. c = "August 10-20",
  2287. d = "July 4"}
  2288.  
  2289. a[#a+1] = {question = 'What are the words after "Dashing through the snow, on a one horse open sleigh"?',
  2290. a = "O'er the fields we go",
  2291. b = "On our way to Grandma's house we go",
  2292. c = "Looking for Rudolph as we go",
  2293. d = "On our way to the North Pole we go"}
  2294.  
  2295. a[#a+1] = {question = 'What are the next words after "Silent Night, Holy Night"?',
  2296. a = "All is calm, all is bright",
  2297. b = "Tis' the season to be bright",
  2298. c = "All is bright, all is calm",
  2299. d = "Jesus is here to light the night"}
  2300.  
  2301. a[#a+1] = {question = 'What are the next words after the Celine song "For all the times you stood by me"?',
  2302. a = "For all the truth that you made me see",
  2303. b = "For everything you do for me",
  2304. c = "With everything you could be",
  2305. d = "How happy it makes me be"}
  2306.  
  2307. a[#a+1] = {question = "In 2014 how old actress Betty White?",
  2308. a = "In her 90's",
  2309. b = "In her 80's",
  2310. c = "In her 70's",
  2311. d = "In her 60's"}
  2312.  
  2313. a[#a+1] = {question = 'Who wrote the play "An Ideal Husband"?',
  2314. a = "Oscar Wilde",
  2315. b = "Morris North",
  2316. c = "Benjamin Franklin",
  2317. d = "Betty White"}
  2318.  
  2319. a[#a+1] = {question = "Who was a co-founder of the London School of Economics?",
  2320. a = "George Bernard Show",
  2321. b = "Annie Leibovitz",
  2322. c = "Ernest Billgren",
  2323. d = "Ernest Hemmingway"}
  2324.  
  2325. a[#a+1] = {question = "Who are well known fashion designers?",
  2326. a = "Connie Chang",
  2327. b = "Vera Wang",
  2328. c = "Gloria Vanderbilt",
  2329. d = "Dana Buchman"}
  2330.  
  2331. a[#a+1] = {question = "Who was a famous American photographer?",
  2332. a = "Annie Leibovitz",
  2333. b = "Helen Keller",
  2334. c = "Anne Frank",
  2335. d = "Doley Madison"}
  2336.  
  2337. a[#a+1] = {question = 'What genre of books is the series "The Chronicles of Narnia"?',
  2338. a = "Fantasy novels",
  2339. b = "Romance",
  2340. c = "Crime",
  2341. d = "DIY"}
  2342.  
  2343. a[#a+1] = {question = 'Who painted "La maja desnuda"?',
  2344. a = "Francisco Goya",
  2345. b = "Michelangelo",
  2346. c = "C.S. Lewis",
  2347. d = "Leonardo DiCaprio"}
  2348.  
  2349. e[#e+1] = {question = 'Who was the voice in the movie "Stuart Little"?',
  2350. a = "Michael J. Fox",
  2351. b = "Michael Buble",
  2352. c = "Nathan Lane",
  2353. d = "Geena Davis"}
  2354.  
  2355. e[#e+1] = {question = "Who is the lead vocalist for Coldplay?",
  2356. a = "Chris Martin",
  2357. b = "Bob Martin",
  2358. c = "Bob Marley",
  2359. d = "Justin Bieber"}
  2360.  
  2361. e[#e+1] = {question = "Who is the lead vocalist for Maroon 5?",
  2362. a = "Adam Levine",
  2363. b = "Sammy Johnson",
  2364. c = "J-Zee",
  2365. d = "Kanye West"}
  2366.  
  2367. e[#e+1] = {question = 'What is the name of the character that plays the lead actress in the ABC show "Scandal"?',
  2368. a = "Olivia Pope",
  2369. b = "Bethany Rogers",
  2370. c = "Margaret Jonet",
  2371. d = "Christina Murphy"}
  2372.  
  2373. e[#e+1] = {question = "What is the Beyonce's daughters name?",
  2374. a = "Blue Ivy Carter",
  2375. b = "Blue Paradise Carter",
  2376. c = "Knowles Carter",
  2377. d = "J.Z. Knowles"}
  2378.  
  2379. e[#e+1] = {question = "What movie did Van Diesel initially become most known for?",
  2380. a = "Saving Private Ryan",
  2381. b = "Erin Brockovich",
  2382. c = "Gravity",
  2383. d = "The Proposal"}
  2384.  
  2385. e[#e+1] = {question = 'Which Actor or Actress was not in the movie "The Proposal"?',
  2386. a = "Julia Roberts ",
  2387. b = "Betty White",
  2388. c = "Sandra Bullock",
  2389. d = "Ryan Reynolds"}
  2390.  
  2391. e[#e+1] = {question = 'Who played Erin Brockovich in the movie "Erin Brockovich"?',
  2392. a = "Julia Roberts",
  2393. b = "Judi Richards",
  2394. c = "Angelina Jolie",
  2395. d = "Elaine Thompson"}
  2396.  
  2397. e[#e+1] = {question = 'Who played Sean Tuohy (Dad) in "The Blindside"?',
  2398. a = "Tim McGraw",
  2399. b = "Keanu Reeves",
  2400. c = "David Haydn-Jones",
  2401. d = "Clintwood"}
  2402.  
  2403. e[#e+1] = {question = 'Who played Jack in the movie "Speed"?',
  2404. a = "Keanu Reeves",
  2405. b = "Frankie Muniz",
  2406. c = "Mario Lopez",
  2407. d = "Chris Rock"}
  2408.  
  2409. e[#e+1] = {question = "What weapon is not used in the game Clue?",
  2410. a = "Brick",
  2411. b = "Candlestick",
  2412. c = "Knife",
  2413. d = "Rope"}
  2414.  
  2415. e[#e+1] = {question = "What is not one of the rooms in the game Clue?",
  2416. a = "Bathroom",
  2417. b = "Dining Room",
  2418. c = "Conservatory",
  2419. d = "Library"}
  2420.  
  2421. e[#e+1] = {question = "Who was not in the Wizard of Oz?",
  2422. a = "Lassie",
  2423. b = "Toto",
  2424. c = "Scarecrow",
  2425. d = "Dorothy"}
  2426.  
  2427. e[#e+1] = {question = "In the Wizard of Oz, where was Dorothy going to?",
  2428. a = "The Emerald City",
  2429. b = "Wendy's",
  2430. c = "Fairyland",
  2431. d = "Disneyland"}
  2432.  
  2433. g[#g+1] = {question = "What is the largest city in Turkey?",
  2434. a = "Istanbul",
  2435. b = "Adana",
  2436. c = "Munich",
  2437. d = "Monte Carlo"}
  2438.  
  2439. g[#g+1] = {question = "Where is Rio de Janeiro?",
  2440. a = "Brazil",
  2441. b = "Spain",
  2442. c = "Africa",
  2443. d = "Asia"}
  2444.  
  2445. g[#g+1] = {question = "Where was the first skyscraper built?",
  2446. a = "Chicago",
  2447. b = "Dubai",
  2448. c = "London",
  2449. d = "France"}
  2450.  
  2451. g[#g+1] = {question = "What is the citadel of Moscow?",
  2452. a = "Kremlin",
  2453. b = "Statue of Liberty",
  2454. c = "Gaza",
  2455. d = "Temple"}
  2456.  
  2457. g[#g+1] = {question = "The world's largest lake is?",
  2458. a = "Caspian Sea",
  2459. b = "Lake Michigan",
  2460. c = "Lake Missouri",
  2461. d = "Lake Quebec"}
  2462.  
  2463. g[#g+1] = {question = "What is the highest mountain in Russia?",
  2464. a = "Mount Elbrus",
  2465. b = "Mont Blanc",
  2466. c = "Mount Rushmore",
  2467. d = "Mount Whitney"}
  2468.  
  2469. g[#g+1] = {question = "What is Turkey's highest mountain?",
  2470. a = "Mount Ararat",
  2471. b = "Mount St. Helens",
  2472. c = "Mount Monte",
  2473. d = "Mount Sinai"}
  2474.  
  2475. g[#g+1] = {question = "Which is a National Park",
  2476. a = "Yellowstone",
  2477. b = "Bryant",
  2478. c = "Horan",
  2479. d = "Champagne"}
  2480.  
  2481. g[#g+1] = {question = "What state did the United States purchase from Russia?",
  2482. a = "Alaska",
  2483. b = "Minnesota",
  2484. c = "New York",
  2485. d = "Rhode Island"}
  2486.  
  2487. g[#g+1] = {question = "What state has the least amount of counties?",
  2488. a = "Delaware",
  2489. b = "Iowa",
  2490. c = "Utah",
  2491. d = "Idaho"}
  2492.  
  2493. g[#g+1] = {question = "Which state was once known Deseret?",
  2494. a = "Utah",
  2495. b = "Oregon",
  2496. c = "Minnesota",
  2497. d = "Iowa"}
  2498.  
  2499. g[#g+1] = {question = "How many states are there in the United States?",
  2500. a = "50",
  2501. b = "40",
  2502. c = "45",
  2503. d = "55"}
  2504.  
  2505. g[#g+1] = {question = "What is another name for Burma?",
  2506. a = "Myanmar",
  2507. b = "Sri Lanka",
  2508. c = "Kiev",
  2509. d = "Malaysia"}
  2510.  
  2511. g[#g+1] = {question = "What was another name for Sri Lanka?",
  2512. a = "Ceylon",
  2513. b = "Abash",
  2514. c = "Mazatte",
  2515. d = "Ronor"}
  2516.  
  2517. g[#g+1] = {question = "What year did Hawaii become a state?",
  2518. a = "1959",
  2519. b = "1914",
  2520. c = "1999",
  2521. d = "1932"}
  2522.  
  2523. g[#g+1] = {question = "Where is Jackson Square?",
  2524. a = "New Orleans",
  2525. b = "Mississippi",
  2526. c = "San Francisco",
  2527. d = "Pittsburgh"}
  2528.  
  2529. g[#g+1] = {question = "In what ocean does the Gulf of Aden lie?",
  2530. a = "Indian",
  2531. b = "Pacific",
  2532. c = "Antarctica",
  2533. d = "Atlantic"}
  2534.  
  2535. g[#g+1] = {question = "How many floors are on the skyscraper Burj Khalifa in Dubai?",
  2536. a = "162",
  2537. b = "100",
  2538. c = "50",
  2539. d = "75"}
  2540.  
  2541. g[#g+1] = {question = "When was the Little Ice Age?",
  2542. a = "14th century-mid 18th century",
  2543. b = "15 century",
  2544. c = "28th century-29th century",
  2545. d = "16th century-17th century"}
  2546.  
  2547. g[#g+1] = {question = "What is the capital of Czechoslovakia?",
  2548. a = "Prague",
  2549. b = "Munich",
  2550. c = "Venice",
  2551. d = "Hanoi"}
  2552.  
  2553. g[#g+1] = {question = "What continent is Iceland in?",
  2554. a = "Europe",
  2555. b = "North America",
  2556. c = "Asia",
  2557. d = "Africa"}
  2558.  
  2559. g[#g+1] = {question = "What is the largest continent?",
  2560. a = "Asia",
  2561. b = "North America",
  2562. c = "Africa",
  2563. d = "Europe"}
  2564.  
  2565. g[#g+1] = {question = "What is the small continent?",
  2566. a = "Australia",
  2567. b = "North America ",
  2568. c = "Europe",
  2569. d = "Africa"}
  2570.  
  2571. g[#g+1] = {question = "Which continent is Greenland in?",
  2572. a = "North America",
  2573. b = "South America",
  2574. c = "Asia",
  2575. d = "Africa"}
  2576.  
  2577. g[#g+1] = {question = "Which country is the world's largest island?",
  2578. a = "Greenland",
  2579. b = "Yugoslavia",
  2580. c = "Cuba",
  2581. d = "Iceland"}
  2582.  
  2583. g[#g+1] = {question = "Where is the Gladesville Bridge?",
  2584. a = "Sidney",
  2585. b = "Quebec",
  2586. c = "St. Louis",
  2587. d = "Munich"}
  2588.  
  2589. g[#g+1] = {question = "What are most skyscrapers in New York built on?",
  2590. a = "Steel frames",
  2591. b = "Sheet rock",
  2592. c = "Brick",
  2593. d = "Rubber"}
  2594.  
  2595. g[#g+1] = {question = "How approximately many miles is the Grand Canyon?",
  2596. a = "1,902 square miles",
  2597. b = "1,000 square miles",
  2598. c = "2,500 square miles",
  2599. d = "500 square miles"}
  2600.  
  2601. g[#g+1] = {question = 'What does the letter "C" stand for in Washington, D.C.?',
  2602. a = "Columbia",
  2603. b = "Country",
  2604. c = "City",
  2605. d = "Capitol"}
  2606.  
  2607. g[#g+1] = {question = "How many continental glaciers are found on the earth?",
  2608. a = "2",
  2609. b = "1",
  2610. c = "5",
  2611. d = "3"}
  2612.  
  2613. g[#g+1] = {question = "Of the two continental glaciers on earth, how much do they each cover approximately?",
  2614. a = "85% and 95%",
  2615. b = "50% and 60%",
  2616. c = "20% and 30%",
  2617. d = "100%"}
  2618.  
  2619. sc[#sc+1] = {question = 'Who is known as the "Father of Medicine"?',
  2620. a = "Hippocrates",
  2621. b = "Albert Einstein",
  2622. c = "Augustus",
  2623. d = "Sir Francis Drake"}
  2624.  
  2625. sc[#sc+1] = {question = "Who invented the battery?",
  2626. a = "Alessandro Volto",
  2627. b = "Albert Einstein",
  2628. c = "Thomas Jefferson",
  2629. d = "Thomas Edison"}
  2630.  
  2631. sc[#sc+1] = {question = "Who discovered the law of electrolysis?",
  2632. a = "Michael Faraday",
  2633. b = "Albert Einstein",
  2634. c = "Vincent Webber",
  2635. d = "Samuel Mourse"}
  2636.  
  2637. sc[#sc+1] = {question = "Which is an insulator?",
  2638. a = "Rubber Sole",
  2639. b = "Copper Coin",
  2640. c = "Steel Paper Clip",
  2641. d = "Aluminum Wire"}
  2642.  
  2643. sc[#sc+1] = {question = "Which is not an electrical conductor?",
  2644. a = "Glass",
  2645. b = "Cooper",
  2646. c = "Steel",
  2647. d = "Aluminum"}
  2648.  
  2649. sc[#sc+1] = {question = "What is the frequency range of Radio Waves?",
  2650. a = "300GHz - 3kHz",
  2651. b = "50GHz - 5kHz",
  2652. c = "25GHz - 13kHz",
  2653. d = "2GHz - 1kHz"}
  2654.  
  2655. sc[#sc+1] = {question = "Where in the body is the pancreas located?",
  2656. a = "Abdomen",
  2657. b = "Heart",
  2658. c = "Feet",
  2659. d = "Hands"}
  2660.  
  2661. sp[#sp+1] = {question = "In auto racing what color of flag is used to get cars to slow down?",
  2662. a = "Yellow",
  2663. b = "Red",
  2664. c = "Blue",
  2665. d = "White"}
  2666.  
  2667. sp[#sp+1] = {question = "Where did the 2010 Tour de France start?",
  2668. a = "The Netherlands",
  2669. b = "Italy",
  2670. c = "Australia",
  2671. d = "United States"}
  2672.  
  2673. sp[#sp+1] = {question = "What automobile race is held annually in Indianapolis?",
  2674. a = "Indy 500",
  2675. b = "Grand Prix",
  2676. c = "Indy 200",
  2677. d = "Masters"}
  2678.  
  2679. sp[#sp+1] = {question = "What is the last leg of a relay called?",
  2680. a = "Anchor Leg",
  2681. b = "Spaced",
  2682. c = "Foot race",
  2683. d = "Marathon"}
  2684.  
  2685. sp[#sp+1] = {question = 'In the movie the "Blind Side" who is the movie about?',
  2686. a = "Michael Oher",
  2687. b = "Joe Montana",
  2688. c = "Drew Brees",
  2689. d = "Peyton Manning"}
  2690.  
  2691. sp[#sp+1] = {question = "If you are doing the Breast Stroke, what sport are you doing?",
  2692. a = "Swimming",
  2693. b = "Baseball",
  2694. c = "Football",
  2695. d = "Hockey"}
  2696.  
  2697. sp[#sp+1] = {question = "How many innings are there in baseball?",
  2698. a = "9",
  2699. b = "10",
  2700. c = "4",
  2701. d = "6"}
  2702.  
  2703. sp[#sp+1] = {question = "How many quarters are there in football?",
  2704. a = "4 ",
  2705. b = "2",
  2706. c = "6",
  2707. d = "8"}
  2708.  
  2709. sp[#sp+1] = {question = "How long is each quarter in football?",
  2710. a = "15 minutes",
  2711. b = "30 minutes",
  2712. c = "60 minutes",
  2713. d = "40 minutes"}
  2714.  
  2715. a[#a+1] = {question = "Where is Westminster Abbey?",
  2716. a = "England",
  2717. b = "Scotland",
  2718. c = "New Zealand",
  2719. d = "Canada"}
  2720.  
  2721. a[#a+1] = {question = "Where did Princess Diana & Prince Charles marry?",
  2722. a = "St. Paul's Cathedral",
  2723. b = "St. Mark's Cathedral",
  2724. c = "Buckingham Palace",
  2725. d = "Kensington Palace"}
  2726.  
  2727. a[#a+1] = {question = "Where is Buckingham Palace?",
  2728. a = "England",
  2729. b = "Spain",
  2730. c = "Puerto Rico",
  2731. d = "Israel"}
  2732.  
  2733. a[#a+1] = {question = "How many rooms are in Buckingham Palace?",
  2734. a = "775",
  2735. b = "923",
  2736. c = "222",
  2737. d = "103"}
  2738.  
  2739. a[#a+1] = {question = "How many bathrooms are in Buckingham Palace?",
  2740. a = "78",
  2741. b = "130",
  2742. c = "49",
  2743. d = "38"}
  2744.  
  2745. a[#a+1] = {question = "Who was the first person to use Buckingham Palace as their main home?",
  2746. a = "Queen Victoria",
  2747. b = "George III",
  2748. c = "John Sheffield",
  2749. d = "King Henry III"}
  2750.  
  2751. a[#a+1] = {question = 'When did the "Changing of the Guards" officially begin at Buckingham Palace?',
  2752. a = "1911",
  2753. b = "1887",
  2754. c = "1730",
  2755. d = "1995"}
  2756.  
  2757. a[#a+1] = {question = "Which dance was popular during the 1920's?",
  2758. a = "Charleston",
  2759. b = "Ballet",
  2760. c = "Jazz",
  2761. d = "Waltz"}
  2762.  
  2763. a[#a+1] = {question = "How many foot positions are there in Ballet?",
  2764. a = "5",
  2765. b = "1",
  2766. c = "7",
  2767. d = "3"}
  2768.  
  2769. a[#a+1] = {question = "Who was Free Astaire's well known dance partner?",
  2770. a = "Ginger Rodgers",
  2771. b = "Farrah Fawcett",
  2772. c = "Gwen Mozart",
  2773. d = "Mimi Rodgers"}
  2774.  
  2775. a[#a+1] = {question = 'Who wrote "Jabberwocky"?',
  2776. a = "Louis Carroll",
  2777. b = "T.S. Eliot",
  2778. c = "Robert Lowell",
  2779. d = "Florence Nightingale"}
  2780.  
  2781. a[#a+1] = {question = "Who wrote American poetry in the 19th century?",
  2782. a = "Emily Dickinson",
  2783. b = "Florence Nightingale",
  2784. c = "T.S. Lewis",
  2785. d = "T.S. Eliot"}
  2786.  
  2787. a[#a+1] = {question = "Who was Ebenezer Scrooge's partner?",
  2788. a = "Jacob Marley",
  2789. b = "St. Nicholas",
  2790. c = "Mad Hatter",
  2791. d = "Bob Marley"}
  2792.  
  2793. a[#a+1] = {question = "Who wrote Utopia?",
  2794. a = "Thomas More",
  2795. b = "Thomas Hardy",
  2796. c = "Angela Westley",
  2797. d = "Margot McDaniels"}
  2798.  
  2799. a[#a+1] = {question = 'What do the girls in "Little Woman" call their mother?',
  2800. a = "Marmee",
  2801. b = "Mum",
  2802. c = "Mummy",
  2803. d = "Mom"}
  2804.  
  2805. a[#a+1] = {question = "Which Russian writer lived in exile from the 1970's - 1990's?",
  2806. a = "Aleksander Solzhenitsyn",
  2807. b = "Vladimar Nabokov",
  2808. c = "Peter Salinski",
  2809. d = "Humphrey Bogart"}
  2810.  
  2811. a[#a+1] = {question = "Who wrote a novella about a man that turns into an insect?",
  2812. a = "Kafka",
  2813. b = "Steinbeck",
  2814. c = "King",
  2815. d = "Dickens"}
  2816.  
  2817. a[#a+1] = {question = "Who wrote Uncle Tom's Cabin?",
  2818. a = "Harriet Beecher Stowe",
  2819. b = "Ernest Hemingway",
  2820. c = "T.S. Eliot",
  2821. d = "Charles Dickens"}
  2822.  
  2823. a[#a+1] = {question = "When was Uncle Tom's Cabin published?",
  2824. a = "1852",
  2825. b = "1879",
  2826. c = "1905",
  2827. d = "1935"}
  2828.  
  2829. a[#a+1] = {question = "What was the topic of the book Uncle Tom's Cabin?",
  2830. a = "Slavery",
  2831. b = "Animal cruelty",
  2832. c = "Land ownership",
  2833. d = "The Great Depression"}
  2834.  
  2835. a[#a+1] = {question = "Which Norse God was called the Raven God?",
  2836. a = "Odin",
  2837. b = "Aristotle",
  2838. c = "Hercules",
  2839. d = "Odysseus"}
  2840.  
  2841. a[#a+1] = {question = "What genre of books does Stephen King typically write?",
  2842. a = "Horror",
  2843. b = "Romance",
  2844. c = "Philosophy",
  2845. d = "Science"}
  2846.  
  2847. a[#a+1] = {question = "What book would you find Amy, Jo, and Beth?",
  2848. a = "Little Women",
  2849. b = "Alice in Wonderland",
  2850. c = "Harry Potter",
  2851. d = "Tale of Two Tales"}
  2852.  
  2853. a[#a+1] = {question = 'Who wrote "Brave New World"?',
  2854. a = "Aldous Huxley",
  2855. b = "Mel Gibson",
  2856. c = "Bram Stoker",
  2857. d = "Charles Dickens"}
  2858.  
  2859. a[#a+1] = {question = 'Who wrote "Dracula"',
  2860. a = "Bram Stoker",
  2861. b = "Roger Westen",
  2862. c = "C. Davis",
  2863. d = "Agatha Christie"}
  2864.  
  2865. a[#a+1] = {question = "What is Charles Negre known for?",
  2866. a = "Photos of Paris",
  2867. b = "Painting photo of Abraham Lincoln",
  2868. c = "Inventing paint",
  2869. d = "Photos of animals"}
  2870.  
  2871. a[#a+1] = {question = "What is William Eggleston known for?",
  2872. a = "Colored photos",
  2873. b = "Outdoor photos",
  2874. c = "Photos of people",
  2875. d = "Photos of prisons"}
  2876.  
  2877. e[#e+1] = {question = "What singer began her career on American Idol?",
  2878. a = "Katharine McPhee",
  2879. b = "Jennifer Gardner",
  2880. c = "Amy Acker",
  2881. d = "Brittany Spears"}
  2882.  
  2883. e[#e+1] = {question = "Who was Jessica Simpson married to?",
  2884. a = "Nick Lachey",
  2885. b = "Trace Adkins",
  2886. c = "Eddie Murphy",
  2887. d = "Jay-Z"}
  2888.  
  2889. e[#e+1] = {question = 'Who sings the song "Genie in a Bottle"?',
  2890. a = "Christina Aguilera",
  2891. b = "Shakira",
  2892. c = "Carrie Underwood",
  2893. d = "Paris Hilton"}
  2894.  
  2895. e[#e+1] = {question = "Who is Ben Affleck married to?",
  2896. a = "Jennifer Garner",
  2897. b = "Reese Witherspoon",
  2898. c = "Janet Jackson",
  2899. d = "Demi Lovato"}
  2900.  
  2901. e[#e+1] = {question = "Who was in the original Charlie's Angels?",
  2902. a = "Farrah Fawcett",
  2903. b = "Connie Francis",
  2904. c = "Joely Fisher",
  2905. d = "Jennifer Grey"}
  2906.  
  2907. e[#e+1] = {question = "What is Instagram primarily used for?",
  2908. a = "Photos",
  2909. b = "Learning",
  2910. c = "Browser",
  2911. d = "Music"}
  2912.  
  2913. e[#e+1] = {question = "Who was Michael Bolton engaged to marry?",
  2914. a = "Nicollette Sheridan",
  2915. b = "Sally Field",
  2916. c = "Sandra Bullock",
  2917. d = "Carrie Underwood"}
  2918.  
  2919. e[#e+1] = {question = "What show was based on Zombies?",
  2920. a = "Walking Dead",
  2921. b = "Scandal",
  2922. c = "Breaking Bad",
  2923. d = "White Collar"}
  2924.  
  2925. e[#e+1] = {question = "What actor was Barbra Streisand been married to since 1998?",
  2926. a = "James Brolin",
  2927. b = "Oscar de la Renta",
  2928. c = "Neil Diamond",
  2929. d = "Hugo Grant"}
  2930.  
  2931. e[#e+1] = {question = "What can you do with Snapchat?",
  2932. a = "Take a photo or video",
  2933. b = "Scrapbooking",
  2934. c = "Playing games",
  2935. d = "Watch movies"}
  2936.  
  2937. e[#e+1] = {question = "Who created Facebook?",
  2938. a = "Mark Zuckerberg",
  2939. b = "Steve Jobs",
  2940. c = "Steve Forbes",
  2941. d = "Michael Jackson"}
  2942.  
  2943. e[#e+1] = {question = "Who did not star in Mrs. Doubtfire?",
  2944. a = "Martin Sheen",
  2945. b = "Robin Williams",
  2946. c = "Sally Field",
  2947. d = "Pierce Brosnan"}
  2948.  
  2949. e[#e+1] = {question = "How many awards did the film Titanic win?",
  2950. a = "11",
  2951. b = "4",
  2952. c = "18",
  2953. d = "0"}
  2954.  
  2955. e[#e+1] = {question = "What company is G-Mail associated with?",
  2956. a = "Google",
  2957. b = "Yahoo",
  2958. c = "AOL",
  2959. d = "Geiko"}
  2960.  
  2961. h[#h+1] = {question = "How many lifeboats did the Titanic have?",
  2962. a = "20",
  2963. b = "10",
  2964. c = "100",
  2965. d = "1,000"}
  2966.  
  2967. h[#h+1] = {question = "What boat was the first to arrive at the Titanic as it was sinking?",
  2968. a = "Carpathia",
  2969. b = "Missouri",
  2970. c = "Hanoi",
  2971. d = "Spaneli"}
  2972.  
  2973. h[#h+1] = {question = "How long did it take to build the Titanic?",
  2974. a = "3 years",
  2975. b = "10 years",
  2976. c = "7 years",
  2977. d = "20 years"}
  2978.  
  2979. h[#h+1] = {question = "When did the United States enter World War II?",
  2980. a = "1941",
  2981. b = "1906",
  2982. c = "1888",
  2983. d = "1885"}
  2984.  
  2985. h[#h+1] = {question = "When was the United Nations Declaration signed?",
  2986. a = "1942",
  2987. b = "1905",
  2988. c = "1887",
  2989. d = "1967"}
  2990.  
  2991. h[#h+1] = {question = "When was the Treaty of Versailles signed?",
  2992. a = "1919",
  2993. b = "1902",
  2994. c = "1905",
  2995. d = "1920"}
  2996.  
  2997. h[#h+1] = {question = "What document did Abraham Lincoln write?",
  2998. a = "Gettysburg Address",
  2999. b = "Declaration of Independence",
  3000. c = "Bill of Rights",
  3001. d = "Constitution"}
  3002.  
  3003. h[#h+1] = {question = "What is George Washington's home called?",
  3004. a = "Mount Vernon",
  3005. b = "Mount McKinley",
  3006. c = "Camp David",
  3007. d = "Monticello"}
  3008.  
  3009. h[#h+1] = {question = "Who did Barack Obama appoint as Secretary of State in 2009?",
  3010. a = "Hillary Clinton",
  3011. b = "John McCain",
  3012. c = "John Kerry",
  3013. d = "Bill Clinton"}
  3014.  
  3015. h[#h+1] = {question = 'What does the government agency "CIA" stand for?',
  3016. a = "Central Intelligence Agency",
  3017. b = "Crime International Agency",
  3018. c = "Criminal Intelligence Association",
  3019. d = "Court Independent Agency"}
  3020.  
  3021. h[#h+1] = {question = "Who Wrote the American Declaration of Independence?",
  3022. a = "Thomas Jefferson",
  3023. b = "George Washington",
  3024. c = "Franklin Roosevelt",
  3025. d = "Abraham Lincoln"}
  3026.  
  3027. h[#h+1] = {question = "Which King signed the Magna Carta?",
  3028. a = "John",
  3029. b = "Henry",
  3030. c = "James ",
  3031. d = "Phillip"}
  3032.  
  3033. h[#h+1] = {question = "When did Texas gain its independence from Mexico?",
  3034. a = "1836",
  3035. b = "1800",
  3036. c = "1900",
  3037. d = "1925"}
  3038.  
  3039. h[#h+1] = {question = "When did Texas become a part of the United States?",
  3040. a = "1845",
  3041. b = "1850",
  3042. c = "1910",
  3043. d = "1922"}
  3044.  
  3045. h[#h+1] = {question = "Who was the wife of King Henry II?",
  3046. a = "Eleanor of Aquitaine",
  3047. b = "Queen Elizabeth",
  3048. c = "Queen Victoria",
  3049. d = "Eleanor of Wales"}
  3050.  
  3051. h[#h+1] = {question = "Which King of England died at the Battle of Bosworth?",
  3052. a = "Richard III",
  3053. b = "Richard II",
  3054. c = "Richard IV",
  3055. d = "Henry II"}
  3056.  
  3057. sc[#sc+1] = {question = "What kind of waves do radar use?",
  3058. a = "microwaves",
  3059. b = "sonic waves",
  3060. c = "ocean waves",
  3061. d = "ultraviolet waves"}
  3062.  
  3063. sc[#sc+1] = {question = "Which is not made by Apple?",
  3064. a = "IMAX",
  3065. b = "iTouch",
  3066. c = "iPad",
  3067. d = "iPod"}
  3068.  
  3069. sc[#sc+1] = {question = "Who founded Apple computer?",
  3070. a = "Steve Jobs",
  3071. b = "Bill Gates",
  3072. c = "Steve Forbes",
  3073. d = "Mark Zuckerburg"}
  3074.  
  3075. sc[#sc+1] = {question = "Who suggested the Earth was not the center of the universe?",
  3076. a = "Copernicus",
  3077. b = "Einstein",
  3078. c = "Leonardo",
  3079. d = "Christopher Columbus"}
  3080.  
  3081. sc[#sc+1] = {question = "Which is a negative of the metric system?",
  3082. a = "Hard to get change in conversions",
  3083. b = "Easy conversion",
  3084. c = "Used by 96% of the world",
  3085. d = "Weight comparisons are easier to understand"}
  3086.  
  3087. sc[#sc+1] = {question = "How many computer languages are in use?",
  3088. a = "2,000",
  3089. b = "30",
  3090. c = "3",
  3091. d = "65"}
  3092.  
  3093. sc[#sc+1] = {question = "What is not considered a metal?",
  3094. a = "Carbon",
  3095. b = "Iron",
  3096. c = "Copper",
  3097. d = "Zinc"}
  3098.  
  3099. sc[#sc+1] = {question = "What minerals does not contribute to water hardness?",
  3100. a = "Flocculation",
  3101. b = "Limestone",
  3102. c = "Gypsum",
  3103. d = "Magnesite"}
  3104.  
  3105. sc[#sc+1] = {question = "What is the symbol for Krypton?",
  3106. a = "Kr",
  3107. b = "KR",
  3108. c = "Kt",
  3109. d = "Ry"}
  3110.  
  3111. sc[#sc+1] = {question = "Nearly 50% of the total energy needs of the U.S are met by?",
  3112. a = "Burning petroleum",
  3113. b = "Burning wood",
  3114. c = "Burning water",
  3115. d = "Purifying water"}
  3116.  
  3117. sc[#sc+1] = {question = "What is BMI?",
  3118. a = "Body Mass Index",
  3119. b = "Bacteria Material Implantation",
  3120. c = "Body Movement Injury",
  3121. d = "Body Mobility Improved"}
  3122.  
  3123. sc[#sc+1] = {question = "What is a cause dizziness?",
  3124. a = "Vertigo",
  3125. b = "Vertical",
  3126. c = "Vermin",
  3127. d = "Vaene"}
  3128.  
  3129. sc[#sc+1] = {question = "Who created the vaccine against Poliomyelitis?",
  3130. a = "Dr. Jonas Salk",
  3131. b = "Albert Einstein",
  3132. c = "Switzer Van Buren",
  3133. d = "Dr. Martin Fitzerald"}
  3134.  
  3135. sc[#sc+1] = {question = "Which is a part of the Lymphatic System?",
  3136. a = "Adenoids",
  3137. b = "Optic Nerve",
  3138. c = "Cervical",
  3139. d = "Retina"}
  3140.  
  3141. sc[#sc+1] = {question = "What is the most abundant mineral in the body?",
  3142. a = "Calcium",
  3143. b = "Niacin",
  3144. c = "Zinc",
  3145. d = "Gold"}
  3146.  
  3147. sc[#sc+1] = {question = "Which is a mineral?",
  3148. a = "Proton",
  3149. b = "Potassium",
  3150. c = "Plutonium",
  3151. d = "Celery"}
  3152.  
  3153. sc[#sc+1] = {question = "What is a key mineral in Chlorophyll?",
  3154. a = "Magnesium",
  3155. b = "Aluminum",
  3156. c = "Manganese",
  3157. d = "Bauxite"}
  3158.  
  3159. sc[#sc+1] = {question = "Which vitamin helps with blood clotting?",
  3160. a = "K",
  3161. b = "A",
  3162. c = "B",
  3163. d = "D"}
  3164.  
  3165. sc[#sc+1] = {question = "Which vitamin is high in a lemon?",
  3166. a = "C",
  3167. b = "K",
  3168. c = "A",
  3169. d = "Iron"}
  3170.  
  3171. sc[#sc+1] = {question = "What is the smallest, thinnest-walled blood vessel in the body?",
  3172. a = "Capillaries",
  3173. b = "Melatonin",
  3174. c = "Venules",
  3175. d = "Cornia"}
  3176.  
  3177. sc[#sc+1] = {question = "The eye is connected to the brain via the?",
  3178. a = "Optic Nerve",
  3179. b = "Vestibular",
  3180. c = "Eye Socket",
  3181. d = "Nose"}
  3182.  
  3183. sc[#sc+1] = {question = "Who invented Coca-Cola?",
  3184. a = "John Pemberton",
  3185. b = "Jack Pemberton",
  3186. c = "Joe Pemberton",
  3187. d = "Jerry Pemberton"}
  3188.  
  3189. sc[#sc+1] = {question = "Which item is not a protein?",
  3190. a = "Sucrose",
  3191. b = "Collagen",
  3192. c = "Keratin",
  3193. d = "Hemoglobin"}
  3194.  
  3195. sc[#sc+1] = {question = "What is the active ingredient in vinegar?",
  3196. a = "Acetic Acid",
  3197. b = "Ascorbic Acid",
  3198. c = "Amino Acid",
  3199. d = "Sulfuric Acid"}
  3200.  
  3201. sc[#sc+1] = {question = "What makes you cry when you peel an onion?",
  3202. a = "Sulfuric Acid",
  3203. b = "Acetic Acid",
  3204. c = "Amino Acid",
  3205. d = "Citric Acid"}
  3206.  
  3207. sc[#sc+1] = {question = "What is an active ingredient in baking soda?",
  3208. a = "Sodium Bicarbonate",
  3209. b = "Sodium",
  3210. c = "Dioxide",
  3211. d = "Potassium"}
  3212.  
  3213. sc[#sc+1] = {question = "Which causes a tomato to be red?",
  3214. a = "Lycopene",
  3215. b = "Potassium",
  3216. c = "Gold",
  3217. d = "Iron"}
  3218.  
  3219. sc[#sc+1] = {question = "Which item has a high amount in Bananas?",
  3220. a = "Potassium",
  3221. b = "Metal",
  3222. c = "Sulfur",
  3223. d = "Magnesium"}
  3224.  
  3225. sc[#sc+1] = {question = "Which compound is extracted from an artichoke?",
  3226. a = "Cyanin",
  3227. b = "Iron",
  3228. c = "Metal",
  3229. d = "Gold"}
  3230.  
  3231. sc[#sc+1] = {question = "What vitamin is destroyed by alcohol?",
  3232. a = "B",
  3233. b = "C",
  3234. c = "A",
  3235. d = "K"}
  3236.  
  3237. sc[#sc+1] = {question = "What is Pisco made from?",
  3238. a = "Grapes",
  3239. b = "Wine",
  3240. c = "Tomato",
  3241. d = "Celery"}
  3242.  
  3243. sc[#sc+1] = {question = "What is Tequila made from?",
  3244. a = "Agave",
  3245. b = "Corn",
  3246. c = "Cactus",
  3247. d = "Rice"}
  3248.  
  3249. sc[#sc+1] = {question = "How many light years across is the Milky Way?",
  3250. a = "100,000",
  3251. b = "1,000,000",
  3252. c = "100",
  3253. d = "1,000"}
  3254.  
  3255. sc[#sc+1] = {question = "What is the bright star in Orion?",
  3256. a = "Betelgeuse",
  3257. b = "Beetle",
  3258. c = "Jupiter",
  3259. d = "Saturn"}
  3260.  
  3261. sc[#sc+1] = {question = "What is the study of the weather?",
  3262. a = "Meteorology",
  3263. b = "Volcanogy",
  3264. c = "Astrology",
  3265. d = "Seismology"}
  3266.  
  3267. sc[#sc+1] = {question = "Which constellation is Sirius found?",
  3268. a = "Canis Major",
  3269. b = "Ursa Major",
  3270. c = "Ursa Minor",
  3271. d = "Mars"}
  3272.  
  3273. sc[#sc+1] = {question = "What sound is too hard for people to hear?",
  3274. a = "Ultrasound",
  3275. b = "Pegasound",
  3276. c = "Sonic Boom",
  3277. d = "Megasound"}
  3278.  
  3279. sc[#sc+1] = {question = "Which amplifies a voice?",
  3280. a = "Megaphone",
  3281. b = "Microphone",
  3282. c = "Pedometer",
  3283. d = "Heart monitor"}
  3284.  
  3285. sc[#sc+1] = {question = "What is a name for the voice box?",
  3286. a = "Larynx",
  3287. b = "Appendix",
  3288. c = "Thyroid",
  3289. d = "Pancreas"}
  3290.  
  3291. sc[#sc+1] = {question = "Which is the smallest bird?",
  3292. a = "Big Hummingbird",
  3293. b = "Parrot",
  3294. c = "Finch",
  3295. d = "Dove"}
  3296.  
  3297. sc[#sc+1] = {question = "What day does the Sun's direct rays cross the celestial equator?",
  3298. a = "Equinox",
  3299. b = "Ecliptic",
  3300. c = "Moon day",
  3301. d = "Full moon"}
  3302.  
  3303. sc[#sc+1] = {question = "Who invented the telescope?",
  3304. a = "Hans Lippershey",
  3305. b = "Galileo",
  3306. c = "Albert Einstein",
  3307. d = "Thomas Jefferson"}
  3308.  
  3309. sc[#sc+1] = {question = "What is the visible part of the sun?",
  3310. a = "Photosphere",
  3311. b = "Stratosphere",
  3312. c = "Atmosphere",
  3313. d = "Hemisphere"}
  3314.  
  3315. sc[#sc+1] = {question = "How many years are there in a light year approximately?",
  3316. a = "5.9 trillion",
  3317. b = "5.9 million",
  3318. c = "5.9 billion",
  3319. d = "6.9 billion"}
  3320.  
  3321. sc[#sc+1] = {question = "When did the Space Age begin?",
  3322. a = "1957",
  3323. b = "1941",
  3324. c = "1897",
  3325. d = "1967"}
  3326.  
  3327. sc[#sc+1] = {question = "Which country does not use the metric system of measurement?",
  3328. a = "Myanmar",
  3329. b = "Germany",
  3330. c = "Brazil",
  3331. d = "Germany"}
  3332.  
  3333. sc[#sc+1] = {question = "Which is used to measure sound?",
  3334. a = "Decibel",
  3335. b = "Decimal",
  3336. c = "Atmosphere",
  3337. d = "Waves"}
  3338.  
  3339. sc[#sc+1] = {question = "How many grams are in a pound?",
  3340. a = "454",
  3341. b = "187",
  3342. c = "222",
  3343. d = "55"}
  3344.  
  3345. sc[#sc+1] = {question = "What is the smallest bone in the body?",
  3346. a = "Stapes",
  3347. b = "Patella",
  3348. c = "Hand",
  3349. d = "Foot"}
  3350.  
  3351. sc[#sc+1] = {question = "What are animals with spines called?",
  3352. a = "Vertebrates",
  3353. b = "Carnivores",
  3354. c = "Amphibians",
  3355. d = "Insects"}
  3356.  
  3357. sc[#sc+1] = {question = "What is not a tooth?",
  3358. a = "Patella",
  3359. b = "Molar",
  3360. c = "Wisdom",
  3361. d = "Canine"}
  3362.  
  3363. sc[#sc+1] = {question = "Rum is made by fermenting what?",
  3364. a = "Sugarcane",
  3365. b = "Pears",
  3366. c = "Oak Trees",
  3367. d = "Apples"}
  3368.  
  3369. sp[#sp+1] = {question = "What sport was originally called Mintonette?",
  3370. a = "Volleyball",
  3371. b = "Baseball",
  3372. c = "Hockey",
  3373. d = "Racquetball"}
  3374.  
  3375. sp[#sp+1] = {question = "When did Volleyball begin?",
  3376. a = "1895",
  3377. b = "1955",
  3378. c = "1710",
  3379. d = "1904"}
  3380.  
  3381. sp[#sp+1] = {question = "Who invented Volleyball & Basketball?",
  3382. a = "William G. Morgan",
  3383. b = "Jackson Haines",
  3384. c = "George H. Brown",
  3385. d = "Irving Brokaw"}
  3386.  
  3387. sp[#sp+1] = {question = "Where was Figure Skating born?",
  3388. a = "Europe",
  3389. b = "Switzerland",
  3390. c = "France",
  3391. d = "Iceland"}
  3392.  
  3393. sp[#sp+1] = {question = "As we know it today, who does Figure Skating initially trace back to?",
  3394. a = "Jackson Haines",
  3395. b = "Dorothy Hamill",
  3396. c = "George H. Brown",
  3397. d = "Irving Brokaw"}
  3398.  
  3399. sp[#sp+1] = {question = 'What sport is the "Stanley Cup" given out in?',
  3400. a = "Hockey",
  3401. b = "Football",
  3402. c = "Baseball",
  3403. d = "Soccer"}
  3404.  
  3405. sp[#sp+1] = {question = "At the 2012 Olympics how many medals did the United States win?",
  3406. a = "140",
  3407. b = "75",
  3408. c = "180",
  3409. d = "210"}
  3410.  
  3411. sp[#sp+1] = {question = "At the 2012 Olympics how many Gold medals did the United States win?",
  3412. a = "46",
  3413. b = "52",
  3414. c = "90",
  3415. d = "115"}
  3416.  
  3417. sp[#sp+1] = {question = "In a game what must a hockey stick be made of unless approved by NHL?",
  3418. a = "Wood",
  3419. b = "Plastic",
  3420. c = "Rubber",
  3421. d = "Vinyl"}
  3422.  
  3423. sp[#sp+1] = {question = "What size is an NHL rink?",
  3424. a = "200' x 85'",
  3425. b = "100' x 50'",
  3426. c = "250' x 250'",
  3427. d = "125' x 75'"}
  3428.  
  3429. sp[#sp+1] = {question = "When was the Stanley Cup first given out?",
  3430. a = "1893",
  3431. b = "1910",
  3432. c = "1950",
  3433. d = "1700"}
  3434.  
  3435. sp[#sp+1] = {question = "Who gave Lacrosse its name?",
  3436. a = "French Settlers",
  3437. b = "Native Americans",
  3438. c = "George Washington",
  3439. d = "King Henry III"}
  3440.  
  3441. sp[#sp+1] = {question = "What sport do the Harlem Globetrotters play?",
  3442. a = "Basketball",
  3443. b = "Football",
  3444. c = "Soccer",
  3445. d = "Lacrosse"}
  3446.  
  3447. sp[#sp+1] = {question = "What state was Michael Phelps born in?",
  3448. a = "Maryland",
  3449. b = "Missouri",
  3450. c = "Michigan",
  3451. d = "Minnesota"}
  3452.  
  3453. sp[#sp+1] = {question = "In the 2008 Olympics, who did not win a medal in the men's 200m Backstroke?",
  3454. a = "Michael Phelps",
  3455. b = "Ryan Lochte",
  3456. c = "Aaron Peirsol",
  3457. d = "Arkady Vyatchanin"}
  3458.  
  3459. sp[#sp+1] = {question = "At the 2008 Olympics, who did not win a medal in the men's 200m Freestyle?",
  3460. a = "Ryan Lochte",
  3461. b = "Michael Phelps",
  3462. c = "Peter Vanderkaay",
  3463. d = "Park Taehwan"}
  3464.  
  3465. sp[#sp+1] = {question = "At the 2008 Olympics, who won the gold medal in the 100m Backstroke?",
  3466. a = "Natalie Coughlin",
  3467. b = "Margaret Hoelzer",
  3468. c = "Kirsty Coventry",
  3469. d = "Miranda Moore"}
  3470.  
  3471. sp[#sp+1] = {question = "How many times have the Green Bay Packers gone to the Super Bowl?",
  3472. a = "5",
  3473. b = "3",
  3474. c = "8",
  3475. d = "1"}
  3476.  
  3477. sp[#sp+1] = {question = "How many times have the Green Bay Packers won the Super Bowl?",
  3478. a = "4",
  3479. b = "3",
  3480. c = "0",
  3481. d = "2"}
  3482.  
  3483. sp[#sp+1] = {question = "How many times have the New York Giants won the Super Bowl?",
  3484. a = "4",
  3485. b = "0",
  3486. c = "5",
  3487. d = "8"}
  3488.  
  3489. sp[#sp+1] = {question = "How many times have the San Francisco 49'ers won the Super Bowl?",
  3490. a = "5",
  3491. b = "0",
  3492. c = "2",
  3493. d = "6"}
  3494.  
  3495. sp[#sp+1] = {question = "What team is not in Chicago?",
  3496. a = "Jaguars",
  3497. b = "Cubs",
  3498. c = "Bears",
  3499. d = "Bulls"}
  3500.  
  3501. sp[#sp+1] = {question = "When were the Minnesota Vikings founded?",
  3502. a = "1960",
  3503. b = "1987",
  3504. c = "1950",
  3505. d = "1999"}
  3506.  
  3507. sp[#sp+1] = {question = "How many medals did Michael Phelps win at the 2008 Olympics?",
  3508. a = "8",
  3509. b = "7",
  3510. c = "5",
  3511. d = "10"}
  3512.  
  3513. sp[#sp+1] = {question = "How many times have the Seattle Seahawks won the Superbowl?",
  3514. a = "1",
  3515. b = "5",
  3516. c = "2",
  3517. d = "7"}
  3518.  
  3519. sp[#sp+1] = {question = "Who is Shaun White?",
  3520. a = "Snowboarder",
  3521. b = "Gymnast",
  3522. c = "Football player",
  3523. d = "Artist"}
  3524.  
  3525. sp[#sp+1] = {question = "When was the skateboard made?",
  3526. a = "1958",
  3527. b = "1895",
  3528. c = "1917",
  3529. d = "1951"}
  3530.  
  3531. sp[#sp+1] = {question = "was the first head coach for the Minnesota Vikings?",
  3532. a = "Norm Van Brocklin",
  3533. b = "Tommy Mason",
  3534. c = "Tom Brady",
  3535. d = "Tom Landry"}
  3536.  
  3537. sp[#sp+1] = {question = "What did James Naismith invent in 1891?",
  3538. a = "Basketball",
  3539. b = "Helmets",
  3540. c = "Shoulder pads",
  3541. d = "Football"}
  3542.  
  3543. sp[#sp+1] = {question = "Where was golf invented?",
  3544. a = "Scotland",
  3545. b = "United States",
  3546. c = "Spain",
  3547. d = "London"}
  3548.  
  3549. sp[#sp+1] = {question = "When was the last time the Olympic trials for track & field were in Eugene,Oregon?",
  3550. a = "2012",
  3551. b = "2008",
  3552. c = "2000",
  3553. d = "1972"}
  3554.  
  3555. sp[#sp+1] = {question = "Which is not a golf obstacle?",
  3556. a = "Hitch",
  3557. b = "Rough",
  3558. c = "Trap ",
  3559. d = "Water"}
  3560.  
  3561. sp[#sp+1] = {question = "Which is not used in golf?",
  3562. a = "Hammer",
  3563. b = "Iron",
  3564. c = "Wood",
  3565. d = "Putter"}
  3566.  
  3567. sp[#sp+1] = {question = "Who was in the 2014 Superbowl?",
  3568. a = "Broncos & Seahawks",
  3569. b = "Steelers & 49'ers",
  3570. c = "Jaguars & Brown",
  3571. d = "Raiders & Giants"}
  3572.  
  3573. sp[#sp+1] = {question = "How many golf clubs can be used in a tournament?",
  3574. a = "14",
  3575. b = "5",
  3576. c = "1",
  3577. d = "8"}
  3578.  
  3579. sp[#sp+1] = {question = "In which country did pigeon racing begin as a sport?",
  3580. a = "Belgium",
  3581. b = "China",
  3582. c = "Japan",
  3583. d = "Venezuela"}
  3584.  
  3585. sp[#sp+1] = {question = "What sport does Serena Williams play?",
  3586. a = "Tennis",
  3587. b = "Swimming",
  3588. c = "Soccer",
  3589. d = "Ballet"}
  3590.  
  3591. sp[#sp+1] = {question = "What is soccer also sometimes called?",
  3592. a = "Football",
  3593. b = "Hockey",
  3594. c = "Lacrosse",
  3595. d = "Baseball"}
  3596.  
  3597. sp[#sp+1] = {question = 'What athlete had the nickname "The Mailman"?',
  3598. a = "Karl Malone",
  3599. b = "Michael Jordan",
  3600. c = "Kobe Bryant",
  3601. d = "Babe Ruth"}
  3602.  
  3603. sp[#sp+1] = {question = "Who invented Basketball?",
  3604. a = "James Naismith",
  3605. b = "Joe Namath",
  3606. c = "Babe Ruth",
  3607. d = "Michael Jordan"}
  3608.  
  3609. sp[#sp+1] = {question = "What is the oldest sport?",
  3610. a = "Boxing",
  3611. b = "Baseball",
  3612. c = "Basketball",
  3613. d = "Football"}
  3614.  
  3615. sp[#sp+1] = {question = "Where are the Cleveland Browns located?",
  3616. a = "Ohio",
  3617. b = "Iowa",
  3618. c = "North Dakota",
  3619. d = "Wyoming"}
  3620.  
  3621. sp[#sp+1] = {question = "What state is the football team the Vikings in?",
  3622. a = "Minnesota",
  3623. b = "Hawaii",
  3624. c = "Kansas",
  3625. d = "Chicago"}
  3626.  
  3627. sp[#sp+1] = {question = "What states does the football team the Raiders play in?",
  3628. a = "California",
  3629. b = "Florida",
  3630. c = "Georgia",
  3631. d = "Texas"}
  3632.  
  3633. sp[#sp+1] = {question = "How many points is a touchdown worth in football?",
  3634. a = "6",
  3635. b = "2",
  3636. c = "6",
  3637. d = "10"}
  3638.  
  3639. sp[#sp+1] = {question = "Who was the first quarterback to win the Superbowl?",
  3640. a = 'Bryan Bartlett "Bart" Starr',
  3641. b = "Willie Wood",
  3642. c = "Elijah Pitts",
  3643. d = "Joe Namath"}
  3644.  
  3645. sp[#sp+1] = {question = "Where will the 2016 Super Bowl be held?",
  3646. a = "Santa Clara",
  3647. b = "San Francisco",
  3648. c = "Los Angeles",
  3649. d = "Denver"}
  3650.  
  3651. sp[#sp+1] = {question = "In the NFC what division are the Arizona Cardinals in?",
  3652. a = "West",
  3653. b = "South",
  3654. c = "East",
  3655. d = "North"}
  3656.  
  3657. sp[#sp+1] = {question = "Who was the first African American quarterback to win a Superbowl?",
  3658. a = "Doug Williams",
  3659. b = "Bryan Ohar",
  3660. c = "Peyton Manning",
  3661. d = "Jon Fergy"}
  3662.  
  3663. sp[#sp+1] = {question = "What word would not apply to skiing?",
  3664. a = "Meadowing",
  3665. b = "Alpine",
  3666. c = "Basket",
  3667. d = "Freestyle"}
  3668.  
  3669. sp[#sp+1] = {question = 'In tennis if you have "love" what score do you have?',
  3670. a = "zero",
  3671. b = "four ",
  3672. c = "ten",
  3673. d = "five"}
  3674.  
  3675. sp[#sp+1] = {question = "In basketball who is known as Crimson Tide?",
  3676. a = "Alabama",
  3677. b = "Montana",
  3678. c = "Nebraska",
  3679. d = "Massachusetts"}
  3680.  
  3681. sp[#sp+1] = {question = "What is a term used in Mountain Climbing?",
  3682. a = "Anchor",
  3683. b = "Diving",
  3684. c = "Swaying",
  3685. d = "Moving"}
  3686.  
  3687. sp[#sp+1] = {question = "What college do the Cornhuskers play for?",
  3688. a = "University of Nebraska-Lincoln",
  3689. b = "San Jose State University",
  3690. c = "Santa Clara State University",
  3691. d = "Stanford University"}
  3692.  
  3693. sp[#sp+1] = {question = "What is the name of the team that plays in Tennessee?",
  3694. a = "Titans",
  3695. b = "Spirits",
  3696. c = "Colts",
  3697. d = "Cowboys"}
  3698.  
  3699. sp[#sp+1] = {question = "What state does the football team the Redskins play for?",
  3700. a = "Washington, D.C.",
  3701. b = "Oregon",
  3702. c = "Missouri",
  3703. d = "Philadelphia"}
  3704.  
  3705. sp[#sp+1] = {question = "What state do the Bengals play football for?",
  3706. a = "Cincinnati",
  3707. b = "Minnesota",
  3708. c = "Wyoming",
  3709. d = "New Jersey"}
  3710.  
  3711. sp[#sp+1] = {question = "How many miles is a marathon?",
  3712. a = "26.21875 miles",
  3713. b = "32 miles",
  3714. c = "24,3367 miles",
  3715. d = "15 miles"}
  3716.  
  3717. sp[#sp+1] = {question = "What is not part of a triathlon?",
  3718. a = "Mountain Climbing",
  3719. b = "Running",
  3720. c = "Swimming",
  3721. d = "Bicycling"}
  3722.  
  3723. a[#a+1] = {question = 'Who wrote the "Catcher in the Rye"?',
  3724. a = "J.D Salinger",
  3725. b = "J.K. Rowling",
  3726. c = "Beatrix Potter",
  3727. d = "William Golding"}
  3728.  
  3729. a[#a+1] = {question = "Who was the Russian Composer of the Nutcracker?",
  3730. a = "Pyotr llyich Tchaikovsky",
  3731. b = "Aaron Coplan",
  3732. c = "Abos Girolomod",
  3733. d = "Adolf Jensen"}
  3734.  
  3735. a[#a+1] = {question = 'Who painted "American Gothic"?',
  3736. a = "Grant Wood",
  3737. b = "Ray Bradbury",
  3738. c = "Claude Monet",
  3739. d = "Vincent van Gogh"}
  3740.  
  3741. e[#e+1] = {question = "When did In & Out Burger first open for business?",
  3742. a = "1948",
  3743. b = "1987",
  3744. c = "1961",
  3745. d = "1994"}
  3746.  
  3747. e[#e+1] = {question = "What book was not in the Harry Potter book series?",
  3748. a = "Harry Potter & the Goblet of Fire",
  3749. b = "Harry Potter & the Half-Blood Prince",
  3750. c = "Harry Potter & the Chamber of Secrets",
  3751. d = "Harry Potter & the Mountain of Fear"}
  3752.  
  3753. e[#e+1] = {question = "What movie was Jim Carrey not in?",
  3754. a = "Christmas Carol",
  3755. b = "Dumb & Dumber",
  3756. c = "Ace Ventura",
  3757. d = "Bruce Almighty"}
  3758.  
  3759. e[#e+1] = {question = "What movie was Chris Rock not in?",
  3760. a = "Beverly Rocks",
  3761. b = "Beverly Hills Cop II",
  3762. c = "Bring the Pain",
  3763. d = "New Jack City"}
  3764.  
  3765. e[#e+1] = {question = "Who was Demi Moore not married to?",
  3766. a = "Sam Elliott",
  3767. b = "Bruce Willis",
  3768. c = "Ashton Kutcher",
  3769. d = "Freddy Moore"}
  3770.  
  3771. e[#e+1] = {question = 'What actor was married to Camille on "Beverly Hills Housewives"?',
  3772. a = "Kelsey Grammer",
  3773. b = "Donald Trump",
  3774. c = "John Travolta",
  3775. d = "Brad Pitt"}
  3776.  
  3777. g[#g+1] = {question = "When did Nevada become a state?",
  3778. a = "1864",
  3779. b = "1705",
  3780. c = "1900",
  3781. d = "1936"}
  3782.  
  3783. g[#g+1] = {question = "What is not a city in Canada?",
  3784. a = "Simpson",
  3785. b = "Quebec",
  3786. c = "Ontario",
  3787. d = "Calgary"}
  3788.  
  3789. g[#g+1] = {question = "What is the capital of Uruguay?",
  3790. a = "Montevideo",
  3791. b = "Kabul",
  3792. c = "Bahrain",
  3793. d = "Nassau"}
  3794.  
  3795. h[#h+1] = {question = "Who was not a Governor?",
  3796. a = "John Adams",
  3797. b = "John Hancock",
  3798. c = "Arnold Schwarzenegger",
  3799. d = "Ronald Reagan"}
  3800.  
  3801. h[#h+1] = {question = 'In politics what does "RNC" stand for?',
  3802. a = "Republican National Committee",
  3803. b = "Republican National Commission",
  3804. c = "Republican National Corporation",
  3805. d = "Republican National Counselor"}
  3806.  
  3807. h[#h+1] = {question = 'In politics what does " DNC" stand for?',
  3808. a = "Democratic National Committee",
  3809. b = "Democratic National Commission",
  3810. c = "Democratic National Corporation",
  3811. d = "Democratic National Counselor"}
  3812.  
  3813. sc[#sc+1] = {question = "What is the Femur?",
  3814. a = "Thigh bone",
  3815. b = "Lumbar Vertebrae",
  3816. c = "The stemum",
  3817. d = "The ribs"}
  3818.  
  3819. sc[#sc+1] = {question = "If you have pain in the Cervicalgia, what it is?",
  3820. a = "Neck pain",
  3821. b = "Chest pain",
  3822. c = "Stomach pain",
  3823. d = "Back pain"}
  3824.  
  3825. sc[#sc+1] = {question = "Who has not been an astronaut?",
  3826. a = "Buzz Light Year",
  3827. b = "Buzz Aldrin",
  3828. c = "Neil Armstrong",
  3829. d = "Daniel C. Burbank"}
  3830.  
  3831. g[#g+1] = {question = "What is the official language in Canada?",
  3832. a = "French/English",
  3833. b = "German",
  3834. c = "Spanish",
  3835. d = "Arabic"}
  3836.  
  3837. g[#g+1] = {question = "What is the capital of Venezuela?",
  3838. a = "Caracas",
  3839. b = "Lima",
  3840. c = "Tegucigalpa",
  3841. d = "Beijing"}
  3842.  
  3843. g[#g+1] = {question = "What is the capital of Missouri?",
  3844. a = "Jefferson",
  3845. b = "Springfield",
  3846. c = "St. Louis",
  3847. d = "Kansas City"}
  3848.  
  3849. g[#g+1] = {question = "How many countries does Libya border?",
  3850. a = "6",
  3851. b = "7",
  3852. c = "3",
  3853. d = "2"}
  3854.  
  3855. g[#g+1] = {question = "What is the capital of Libya?",
  3856. a = "Tripoli",
  3857. b = "Zillah",
  3858. c = "Al Jawf",
  3859. d = "Maradah"}
  3860.  
  3861. g[#g+1] = {question = "What country is Warsaw in?",
  3862. a = "Poland",
  3863. b = "Egypt",
  3864. c = "Turkey",
  3865. d = "Romania"}
  3866.  
  3867. g[#g+1] = {question = "How many states does Kansas share a border with?",
  3868. a = "4",
  3869. b = "2",
  3870. c = "5",
  3871. d = "1"}
  3872.  
  3873. g[#g+1] = {question = "How many states border with Alabama?",
  3874. a = "4",
  3875. b = "6",
  3876. c = "2",
  3877. d = "1"}
  3878.  
  3879. g[#g+1] = {question = "What state is Bismark in?",
  3880. a = "North Dakota",
  3881. b = "South Dakota",
  3882. c = "Mississippi",
  3883. d = "Kentucky"}
  3884.  
  3885. g[#g+1] = {question = "Where was President H.W. Bush born?",
  3886. a = "Connecticut",
  3887. b = "Texas",
  3888. c = "Arizona",
  3889. d = "Oklahoma"}
  3890.  
  3891. g[#g+1] = {question = "What is the capital of Louisiana?",
  3892. a = "Baton Rouge",
  3893. b = "New Orleans",
  3894. c = "Austin ",
  3895. d = "Little Rock"}
  3896.  
  3897. sc[#sc+1] = {question = "What is Highly Superior Autobiography Memory?",
  3898. a = "Ability to recall most details of every day in their life",
  3899. b = "Remember facts and easily forget",
  3900. c = "Memory confuses thoughts",
  3901. d = "Memory that gradually fades over time"}
  3902.  
  3903. sc[#sc+1] = {question = "How many people have Highly Superior Autobiography Memory?",
  3904. a = "13",
  3905. b = "10",
  3906. c = "6",
  3907. d = "50"}
  3908.  
  3909. sc[#sc+1] = {question = "What actress has Highly Superior Autobiography Memory?",
  3910. a = "Marilu Henner",
  3911. b = "Jamie Curtis",
  3912. c = "Reese Witherspoon",
  3913. d = "Katherine Heigl"}
  3914.  
  3915. a[#a+1] = {question = "What was the pseudonym for Wuthering Heights author Emily Bronte?",
  3916. a = "Ellis Belle",
  3917. b = "Ernest Hemingway",
  3918. c = "Eleanor Roosevelt",
  3919. d = "Mary Brown"}
  3920.  
  3921. a[#a+1] = {question = "Which of the following artists focuses more than half of his work around dance?",
  3922. a = "Edgar Degas",
  3923. b = "Paul Gauguin",
  3924. c = "Edouard Manet",
  3925. d = "Vincent van Gogh"}
  3926.  
  3927. a[#a+1] = {question ='"Who painted "The Luncheon on the Grass"?',
  3928. a = "Edouard Manet",
  3929. b = "Gustave Courbet",
  3930. c = "Paul Gauguin",
  3931. d = "Charles Laval"}
  3932.  
  3933. a[#a+1] = {question = 'What painter has a hidden photo of a man in their painting "The Blue Room"?',
  3934. a = "Pablo Picasso",
  3935. b = "Vincent van Gogh",
  3936. c = "Michelangelo",
  3937. d = "Frida Kahlo"}
  3938.  
  3939. a[#a+1] = {question = 'Who wrote the novel "Anne of Green Gables"?',
  3940. a = "Lucy Maud Montgomery",
  3941. b = "Judy Blume",
  3942. c = "Louisa May Alcott",
  3943. d = "L. Frank Baum"}
  3944.  
  3945. a[#a+1] = {question = 'Who played Laura Elizabeth Ingalls Wilder in the "The Little House on the Prairie"?',
  3946. a = "Melissa Gilbert",
  3947. b = "Melissa Joan Hart",
  3948. c = "Jenny McCartney",
  3949. d = "Melissa George"}
  3950.  
  3951. a[#a+1] = {question = 'Who wrote the classic novel "Black Beauty"?',
  3952. a = "Anna Sewell",
  3953. b = "Jane Austen",
  3954. c = "Edgar Allan Poe",
  3955. d = "James Cameron"}
  3956.  
  3957. a[#a+1] = {question = 'What author is best known for their book "Fahrenheit 451"?',
  3958. a = "Ray Bradbury",
  3959. b = "James Patterson",
  3960. c = "Stephen King",
  3961. d = "John Grisham"}
  3962.  
  3963. e[#e+1] = {question = 'In the game "Monopoly" what is the name of the last space before "Go"?',
  3964. a = "Boardwalk",
  3965. b = "Park Place",
  3966. c = "Oriental Trading",
  3967. d = "Atlantic Avenue"}
  3968.  
  3969. e[#e+1] = {question = "What television show did Will Smith play in?",
  3970. a = "The Fresh Prince of Bel-Air",
  3971. b = "The Brady Bunch",
  3972. c = "The Love Boat",
  3973. d = "Full House"}
  3974.  
  3975. e[#e+1] = {question = "Who wrote the story, Are you there God? It's me Margaret?",
  3976. a = "Judy Blume",
  3977. b = "Eric Carle",
  3978. c = "E.B. White",
  3979. d = "Ann M. Martin"}
  3980.  
  3981. e[#e+1] = {question = "What movie was Melissa Gilbert not in?",
  3982. a = "Full House",
  3983. b = "Blood Vows: The story of a Mafia Wife",
  3984. c = "Little House on the Prairie",
  3985. d = "Stand by your man"}
  3986.  
  3987. e[#e+1] = {question = 'What actor played in "Back to the Future"?',
  3988. a = "Michael J. Fox",
  3989. b = "Adam Sandler",
  3990. c = "Jim Carrey",
  3991. d = "Jason Bateman"}
  3992.  
  3993. e[#e+1] = {question = 'In the television show "Walker, Texas Ranger" who played Walker?',
  3994. a = "Chuck Norris",
  3995. b = "Billy Ray Cyrus",
  3996. c = "Tommy Lee Jones",
  3997. d = "Clint Eastwood"}
  3998.  
  3999. e[#e+1] = {question = "What movie was Harrison Ford not in?",
  4000. a = "Titanic",
  4001. b = "Witness",
  4002. c = "Patriot Games",
  4003. d = "Star Wars"}
  4004.  
  4005. e[#e+1] = {question = 'Who wrote "The Lion, the Witch and the Wardrobe"?',
  4006. a = "C.S. Lewis",
  4007. b = "J.K. Rowling",
  4008. c = "Beatrix Potter",
  4009. d = "Stephen King"}
  4010.  
  4011. e[#e+1] = {question = 'Who wrote "Jurassic Park"?',
  4012. a = "Michael Crichton",
  4013. b = "Stephen King",
  4014. c = "Dean Koontz",
  4015. d = "J.K. Rowling"}
  4016.  
  4017. e[#e+1] = {question = 'Who said "Never give up, for that is just the place and time the tide will turn"?',
  4018. a = "Harriet Beecher Stowe",
  4019. b = "Mayu Angelou",
  4020. c = "Oprah Winfrey",
  4021. d = "Rosa Parks"}
  4022.  
  4023. e[#e+1] = {question = "Leeroy Jenkins is from what popular video game?",
  4024. a = "World of Warcraft",
  4025. b = "Mass Effect",
  4026. c = "Halo",
  4027. d = "The Elder Scrolls:Skyrim"}
  4028.  
  4029. e[#e+1] = {question = "When did the original Cat Woman first make an appearance in Batman?",
  4030. a = "1940",
  4031. b = "1960",
  4032. c = "1969",
  4033. d = "1975"}
  4034.  
  4035. e[#e+1] = {question = 'What is the name of one of the Lions in "Lion King"?',
  4036. a = "Musafa",
  4037. b = "Zimba",
  4038. c = "Madea",
  4039. d = "Timber"}
  4040.  
  4041. e[#e+1] = {question = "What was the 1960's-1970's show where a dad & mom each blended their 3 kids together?",
  4042. a = "The Brady Bunch",
  4043. b = "The Partridge Family",
  4044. c = "Little House on the Prairie",
  4045. d = "Full House"}
  4046.  
  4047. e[#e+1] = {question = 'Who wrote the song "Purple Rain"?',
  4048. a = "Prince",
  4049. b = "Billy Idol",
  4050. c = "The Rolling Stones",
  4051. d = "Van Halen"}
  4052.  
  4053. e[#e+1] = {question = 'Who wrote the song "Who sang the 1980s song "Like a Virgin"?',
  4054. a = "Madonna",
  4055. b = "Cyndi Lauper",
  4056. c = "Pat Benetar",
  4057. d = "Whitney Houston"}
  4058.  
  4059. e[#e+1] = {question = "Who wrote the song Girl's Just Want to Have Fun?",
  4060. a = "Cyndi Lauper",
  4061. b = "Madonna",
  4062. c = "Beyonce",
  4063. d = "Janet Jackson"}
  4064.  
  4065. e[#e+1] = {question = 'Who won an Academy Award for their role in "Scent of a Woman"?',
  4066. a = "Al Pacino",
  4067. b = "Frank Sinatra",
  4068. c = "Gene Simmons",
  4069. d = "John Travolta"}
  4070.  
  4071. e[#e+1] = {question = 'Who wrote & directed the movie "The Terminator?"',
  4072. a = "James Cameron",
  4073. b = "Steven Spielberg",
  4074. c = "Ron Howard",
  4075. d = "Tom Hanks"}
  4076.  
  4077. e[#e+1] = {question = "What company is Super Mario published by?",
  4078. a = "Nintendo",
  4079. b = "Playstation",
  4080. c = "Sony",
  4081. d = "X Box"}
  4082.  
  4083. e[#e+1] = {question = "What year did the New Year's Eve ball drop begin in New York?",
  4084. a = "1907",
  4085. b = "1925",
  4086. c = "1967 ",
  4087. d = "1976"}
  4088.  
  4089. e[#e+1] = {question ='"On the show "Regis & Kathie Lee" what female replaced Kathie Lee?',
  4090. a = "Kelly",
  4091. b = "Kate",
  4092. c = "Barbara",
  4093. d = "Whoopi"}
  4094.  
  4095. e[#e+1] = {question = 'Who is one of the characters in the Disney movie "Frozen"?',
  4096. a = "Anna",
  4097. b = "Elizabeth",
  4098. c = "Mary",
  4099. d = "Samantha"}
  4100.  
  4101. e[#e+1] = {question = 'What television network aired the series "The Godfather"?',
  4102. a = "HBO",
  4103. b = "ABC",
  4104. c = "NBC ",
  4105. d = "Showtime"}
  4106.  
  4107. e[#e+1] = {question = "Approximately how much do American's spend each year on Halloween?",
  4108. a = "$6 billion",
  4109. b = "$800 million",
  4110. c = "$7 billion",
  4111. d = "$1 billion"}
  4112.  
  4113. e[#e+1] = {question = "What is the name of the pig in Charlotte's Web?",
  4114. a = "Wilbur",
  4115. b = "Nellie",
  4116. c = "Max",
  4117. d = "Joy"}
  4118.  
  4119. e[#e+1] = {question = 'What former pop singer "Spice girl" is married to soccer (football) player David Beckham?',
  4120. a = "Posh Spice",
  4121. b = "Scary Spice",
  4122. c = "Baby Spice",
  4123. d = "Ginger Spice"}
  4124.  
  4125. e[#e+1] = {question = "ESRB is listed on video games to rate a game, what does ESRB stand for?",
  4126. a = "Entertainment Software Rating Board",
  4127. b = "Electronic Software Review Rating",
  4128. c = "Everyone Separated Randomly Board",
  4129. d = "Entertainment Software Reviewing Board"}
  4130.  
  4131. e[#e+1] = {question = 'Who was in the 1982 movie "E.T."?',
  4132. a = "Drew Barrymore",
  4133. b = "Jennifer Lawrence",
  4134. c = "Kim Richards",
  4135. d = "Charlize Theron"}
  4136.  
  4137. e[#e+1] = {question = 'What website are you able to share your favorite items or look at others by "Pinning" them?',
  4138. a = "Pinterest",
  4139. b = "Pin it",
  4140. c = "Pin ours",
  4141. d = "Pinning favorites"}
  4142.  
  4143. e[#e+1] = {question = 'Who created the character "Mickey Mouse"?',
  4144. a = "Walt Disney",
  4145. b = "PBS",
  4146. c = "Eric Carl",
  4147. d = "Alex Trebek"}
  4148.  
  4149. e[#e+1] = {question = 'Who said "Dreaming about being an actress, is more exciting then being one"?',
  4150. a = "Marilyn Monroe",
  4151. b = "Sarah Jessica Parker",
  4152. c = "Kristen Stewart",
  4153. d = "Cameron Diaz"}
  4154.  
  4155. e[#e+1] = {question = 'Who said "Never worry about bad press: All that matters is if they spelled your name right?',
  4156. a = "Kate Hudson",
  4157. b = "Goldie Hawn",
  4158. c = "Whoopie Goldberg",
  4159. d = "Judy Garland"}
  4160.  
  4161. e[#e+1] = {question = 'What car company makes the "Camry"?',
  4162. a = "Toyota",
  4163. b = "Ford",
  4164. c = "Mercedes",
  4165. d = "Honda"}
  4166.  
  4167. e[#e+1] = {question = "Who was the American Figure skater associated with the attack on Nancy Kerrigan?",
  4168. a = "Tanya Harding",
  4169. b = "Kristi Yamaguchi",
  4170. c = "Paula Jones",
  4171. d = "Mao Asada"}
  4172.  
  4173. g[#g+1] = {question = 'What state is called "The Biggest Little City in the World"?',
  4174. a = "Reno",
  4175. b = "Las Vegas",
  4176. c = "Los Angeles",
  4177. d = "Dufur"}
  4178.  
  4179. g[#g+1] = {question = "Bangkok is the country of what capital?",
  4180. a = "Thailand",
  4181. b = "England",
  4182. c = "Egypt",
  4183. d = "Israel"}
  4184.  
  4185. g[#g+1] = {question = "Where has Catatumbo Lightening been found?",
  4186. a = "Venezuela",
  4187. b = "Peru",
  4188. c = "Georgia",
  4189. d = "Turkey"}
  4190.  
  4191. g[#g+1] = {question = "Tennessee is split into two time zones, what are the two time zones it is in?",
  4192. a = "Central & Eastern",
  4193. b = "Mountain & Central",
  4194. c = "Mountain & Pacific",
  4195. d = "Eastern & Mountain"}
  4196.  
  4197. g[#g+1] = {question = "Cairo is the capital of what?",
  4198. a = "Egypt",
  4199. b = "Beirut",
  4200. c = "El Salvador",
  4201. d = "Mississippi"}
  4202.  
  4203. g[#g+1] = {question = "Where is the Taj Mahal?",
  4204. a = "India",
  4205. b = "Japan",
  4206. c = "Egypt",
  4207. d = "Finland"}
  4208.  
  4209. g[#g+1] = {question = "How many states have 2 different time zones? Ex: Part of state in Pacific & part in Mountain?",
  4210. a = "13",
  4211. b = "3",
  4212. c = "7",
  4213. d = "0"}
  4214.  
  4215. g[#g+1] = {question = "Where is the longest highway in the United States?",
  4216. a = "New Port, Oregon to Boston, MS",
  4217. b = "Provincetown, MS to Bishop, CA",
  4218. c = "Boston, MS to Seattle, WA",
  4219. d = "Atlantic City, NJ to Astoria, OR"}
  4220.  
  4221. g[#g+1] = {question = "Where is Yale University located?",
  4222. a = "Connecticut",
  4223. b = "Maryland",
  4224. c = "New Jersey",
  4225. d = "Michigan"}
  4226.  
  4227. g[#g+1] = {question = "What continent is Monaco located in?",
  4228. a = "Europe",
  4229. b = "Africa",
  4230. c = "Asia",
  4231. d = "Australia"}
  4232.  
  4233. g[#g+1] = {question = "Where is Frankfurt located?",
  4234. a = "Germany",
  4235. b = "Austria",
  4236. c = "Hungary",
  4237. d = "Iraq"}
  4238.  
  4239. g[#g+1] = {question = "Where is Princeton University located?",
  4240. a = "New Jersey",
  4241. b = "North Dakota",
  4242. c = "South Dakota",
  4243. d = "Georgia"}
  4244.  
  4245. g[#g+1] = {question = "Where is Ann Arbor located?",
  4246. a = "Michigan",
  4247. b = "Delaware",
  4248. c = "Kentucky",
  4249. d = "Indianapolis"}
  4250.  
  4251. g[#g+1] = {question = 'What state is known as the "Pelican State"?',
  4252. a = "New Orleans",
  4253. b = "Michigan",
  4254. c = "Tennessee",
  4255. d = "Indianapolis"}
  4256.  
  4257. g[#g+1] = {question = "What state is Yellowstone National Park not in?",
  4258. a = "Oregon",
  4259. b = "Wyoming",
  4260. c = "Idaho ",
  4261. d = "Montana"}
  4262.  
  4263. g[#g+1] = {question = "What state is Yosemite National Park in?",
  4264. a = "California",
  4265. b = "Colorado",
  4266. c = "Kentucky",
  4267. d = "Wisconsin"}
  4268.  
  4269. g[#g+1] = {question = "What state looks similar to a boot?",
  4270. a = "Louisiana",
  4271. b = "Kentucky",
  4272. c = "Wisconsin",
  4273. d = "North Dakota"}
  4274.  
  4275. g[#g+1] = {question = "What is the airport code for Portland, Oregon?",
  4276. a = "PDX",
  4277. b = "POO",
  4278. c = "POR",
  4279. d = "ORE"}
  4280.  
  4281. g[#g+1] = {question = "What is the airport code for Kansas City, MO",
  4282. a = "MCI",
  4283. b = "KAN",
  4284. c = "MOK",
  4285. d = "KCM"}
  4286.  
  4287. h[#h+1] = {question = "Where did Barack Obama go to school?",
  4288. a = "Harvard",
  4289. b = "Yale",
  4290. c = "University of Hawaii",
  4291. d = "University of Florida"}
  4292.  
  4293. h[#h+1] = {question = "Where did Bill Clinton go to college?",
  4294. a = "Yale",
  4295. b = "Harvard",
  4296. c = "Princenton",
  4297. d = "Vanderbilt"}
  4298.  
  4299. h[#h+1] = {question = "How many children does George W. Bush have?",
  4300. a = "2",
  4301. b = "4",
  4302. c = "1",
  4303. d = "3"}
  4304.  
  4305. h[#h+1] = {question = "What actor is related to Abraham Lincoln?",
  4306. a = "Tom Hanks",
  4307. b = "Sean Penn",
  4308. c = "Brad Pitt",
  4309. d = "Sylvester Stallone"}
  4310.  
  4311. h[#h+1] = {question = 'Which Goddess is the Goddess of "Love & Beauty"?',
  4312. a = "Aphrodite",
  4313. b = "Selene",
  4314. c = "Eris",
  4315. d = "Iris"}
  4316.  
  4317. h[#h+1] = {question = "Who was the first Secretary of the Treasury?",
  4318. a = "Alexander Hamilton",
  4319. b = "George Washington",
  4320. c = "John Adams",
  4321. d = "James Madison"}
  4322.  
  4323. h[#h+1] = {question = "Which vice president killed Alexander Hamilton?",
  4324. a = "Aaron Burr",
  4325. b = "John Adams",
  4326. c = "John Calhoun",
  4327. d = "George Clinton"}
  4328.  
  4329. h[#h+1] = {question = "What is Tutankhamun commonly known as?",
  4330. a = "King Tut",
  4331. b = "King Tutank",
  4332. c = "King Hamun",
  4333. d = "King Tutank"}
  4334.  
  4335. h[#h+1] = {question = "By an act of Congress when was the Metropolitan Police in D.C. formed?`",
  4336. a = "1861",
  4337. b = "1802",
  4338. c = "1815",
  4339. d = "1925"}
  4340.  
  4341. h[#h+1] = {question = "What year was the Secret Service founded?",
  4342. a = "1865",
  4343. b = "1889",
  4344. c = "1900",
  4345. d = "1936"}
  4346.  
  4347. h[#h+1] = {question = "In addition to a group of words on the quarter, what single word is on it?",
  4348. a = "Liberty",
  4349. b = "Freedom",
  4350. c = "Justice",
  4351. d = "Allegiance"}
  4352.  
  4353. h[#h+1] = {question = "What is it the name of the person that signs & stamps a document as a neutral third party?",
  4354. a = "Notary Public",
  4355. b = "Notarized signature",
  4356. c = "Third person authenticity",
  4357. d = "Signature of the court"}
  4358.  
  4359. h[#h+1] = {question = "Who was the French artist and sculptor who designed the Statue of Liberty?",
  4360. a = "Arguste Barholdi",
  4361. b = "Pablo Picasso",
  4362. c = "Ernest Hemingway",
  4363. d = "Richard Morris Hunt"}
  4364.  
  4365. h[#h+1] = {question = "What is POTUS commonly used to stand for?",
  4366. a = "President of the United States",
  4367. b = "Peace over the United States",
  4368. c = "Protection over the United States",
  4369. d = "Please only thank us"}
  4370.  
  4371. h[#h+1] = {question = "Approximately how much does the Statue of Liberty's concrete foundation weigh?",
  4372. a = "54 million pounds",
  4373. b = "15 million pounds",
  4374. c = "3 million pounds",
  4375. d = "800,000 pounds"}
  4376.  
  4377. h[#h+1] = {question = "Which president is on the $20.00 bill?",
  4378. a = "Andrew Jackson",
  4379. b = "George Washington",
  4380. c = "James Madison",
  4381. d = "Abraham Lincoln"}
  4382.  
  4383. h[#h+1] = {question = "What was the performance Abraham Lincoln was attending when he was killed?",
  4384. a = "Our American Cousin",
  4385. b = "Patriots",
  4386. c = "A flame goes on",
  4387. d = "The stars among us"}
  4388.  
  4389. h[#h+1] = {question = "Who was John Wilkes Booth' conspirator to kill Secretary of State William Seward?",
  4390. a = "Lewis Powell",
  4391. b = "George Atzerodt",
  4392. c = "Quincy Adams",
  4393. d = "Ben Franklin"}
  4394.  
  4395. h[#h+1] = {question = "Who was John Wilkes Booth' conspirator to kill the Vice President Andrew Johnson?",
  4396. a = "George Atzerodt",
  4397. b = "Lewis Powell",
  4398. c = "Benedict Arnold",
  4399. d = "John Adams"}
  4400.  
  4401. h[#h+1] = {question = "In 2013 the Federal Reserve issued a new $100 bill, who is on the front of it?",
  4402. a = "Benjamin Franklin",
  4403. b = "George Washington",
  4404. c = "Theodore Roosevelt",
  4405. d = "Abraham Lincoln"}
  4406.  
  4407. h[#h+1] = {question = "Where did the first Ronald McDonald house open?",
  4408. a = "Philadelphia, PA",
  4409. b = "Spokane, WA",
  4410. c = "Boise, ID",
  4411. d = "Salt like City, UT"}
  4412.  
  4413. h[#h+1] = {question = "What was the name of the hotel John Wilkes Booth was staying when he assassinated Abraham Lincoln?",
  4414. a = "The National Hotel",
  4415. b = "The Capitol Hotel",
  4416. c = "The Washington Hotel",
  4417. d = "Lincoln Hotel"}
  4418.  
  4419. h[#h+1] = {question = 'What person had the favorite saying, "A penny saved is a penny earned"?',
  4420. a = "Benjamin Franklin",
  4421. b = "Franklin D. Roosevelt",
  4422. c = "Abraham Lincoln",
  4423. d = "James Madison"}
  4424.  
  4425. h[#h+1] = {question = 'How many stitches needed to be removed from the "Star-Spangled Banner" Flag to help preserve it?',
  4426. a = "1.7 million",
  4427. b = "1 million",
  4428. c = "500,000",
  4429. d = "300,500"}
  4430.  
  4431. h[#h+1] = {question = 'Who wrote the original song "God Bless America"?',
  4432. a = "Irving Berlin",
  4433. b = "John Adams",
  4434. c = "Woodie Guthrie",
  4435. d = "Celine Dion"}
  4436.  
  4437. h[#h+1] = {question = 'Who wrote the National Anthem "Star-Spangled Banner"',
  4438. a = "Francis Key Scott",
  4439. b = "Robert Dodd",
  4440. c = "Woodie Guthrie",
  4441. d = "Irving Barlin"}
  4442.  
  4443. h[#h+1] = {question = "What is Daniel Boone known for?",
  4444. a = "Pioneer",
  4445. b = "Artist",
  4446. c = "Painter",
  4447. d = "Politician"}
  4448.  
  4449. h[#h+1] = {question = 'Who inherited the "Star-Spangled Banner" Flag before giving it to the Smithsonian?',
  4450. a = "Eben Appleton",
  4451. b = "Eliza Young",
  4452. c = "Mary Pickersgill",
  4453. d = "Betty Ross"}
  4454.  
  4455. sc[#sc+1] = {question = 'What is a "Bacteriologist"?',
  4456. a = "Study of Bacteria",
  4457. b = "Study of the Earth",
  4458. c = "Study of Meteorology",
  4459. d = "Study of Volcanoes"}
  4460.  
  4461. sc[#sc+1] = {question = 'Who is the "Petri Dish" name after?',
  4462. a = "Julius Richard Petri",
  4463. b = "Marvin Petri",
  4464. c = "Francis Mellen",
  4465. d = "David Murphy"}
  4466.  
  4467. sc[#sc+1] = {question = "How many pounds is in a short ton?",
  4468. a = "2,000 pounds",
  4469. b = "1,000 pounds",
  4470. c = "5,000 pounds",
  4471. d = "500 pounds"}
  4472.  
  4473. sc[#sc+1] = {question = "If you have Sacroiliac pain where would you most likely feel it",
  4474. a = "Low back",
  4475. b = "Arm",
  4476. c = "Toes",
  4477. d = "Feet"}
  4478.  
  4479. sc[#sc+1] = {question = "What is Dyspepsia?",
  4480. a = "Indigestion",
  4481. b = "Broken leg",
  4482. c = "Rash",
  4483. d = "Skin infection"}
  4484.  
  4485. sc[#sc+1] = {question = "What does RAM inside a computer?",
  4486. a = "Random Access Memory",
  4487. b = "Routing Allocated Memory",
  4488. c = "Rounded Accumulated Memory",
  4489. d = "Reactive Adhesive Material"}
  4490.  
  4491. sc[#sc+1] = {question = 'Who is considered to be "The Father of Modern Science"?',
  4492. a = "Galileo Galileo",
  4493. b = "Isaac Newton",
  4494. c = "Thomas Edison",
  4495. d = "Albert Einstein"}
  4496.  
  4497. sp[#sp+1] = {question = "What is Camden Yards used for?",
  4498. a = "Major League Baseball",
  4499. b = "Horse Racing",
  4500. c = "Polo",
  4501. d = "Queen Elizabeth's home"}
  4502.  
  4503. sp[#sp+1] = {question = "Which major league baseball team plays their games at Coors field?",
  4504. a = "Colorado",
  4505. b = "Houston",
  4506. c = "Texas",
  4507. d = "Philadelphia"}
  4508.  
  4509. sp[#sp+1] = {question = "What is it when a pitcher pitches a game & opposing never gets on a base safely?",
  4510. a = "Perfect game",
  4511. b = "No hitter",
  4512. c = "Complete",
  4513. d = "1 hitter"}
  4514.  
  4515. sp[#sp+1] = {question = "In baseball which will result in a strike?",
  4516. a = "All of the above",
  4517. b = "Swing and miss",
  4518. c = "Bunted foul",
  4519. d = "Not struck at & pitch is through strike zone"}
  4520.  
  4521. sp[#sp+1] = {question = "What is a pitch that does not enter strike zone & is not hit at?",
  4522. a = "Ball",
  4523. b = "Home Run",
  4524. c = "Walk",
  4525. d = "Safe"}
  4526.  
  4527. sp[#sp+1] = {question = "How many NBA MVP awards did LeBron James win with the Cavaliers?",
  4528. a = "2",
  4529. b = "4",
  4530. c = "5",
  4531. d = "1"}
  4532.  
  4533. sp[#sp+1] = {question = "What number does LeBron wear on his Miami Heat jersey?",
  4534. a = "6",
  4535. b = "8",
  4536. c = "22",
  4537. d = "18"}
  4538.  
  4539. sp[#sp+1] = {question = "Which team drafted LeBron James as #1 overall in the 2003 NBA draft?",
  4540. a = "Cleveland Cavalier",
  4541. b = "Miami Heat",
  4542. c = "Gold State Warriors",
  4543. d = "Los Angeles Lakers"}
  4544.  
  4545. sp[#sp+1] = {question = "Who holds the NBA career record for total rebounds?",
  4546. a = "Wilt Chamberlin",
  4547. b = "Kobe Bryant",
  4548. c = "LeBron James",
  4549. d = "Shaquille O'Neal"}
  4550.  
  4551. sp[#sp+1] = {question = "Which NBA team has had the most MVP awards?",
  4552. a = "Boston Celtics",
  4553. b = "Golden State Warriors",
  4554. c = "Los Angeles Lakers",
  4555. d = "Phoenix Suns"}
  4556.  
  4557. sp[#sp+1] = {question = "How many MVP awards did Michael Jordan win?",
  4558. a = "5",
  4559. b = "2",
  4560. c = "0",
  4561. d = "1"}
  4562.  
  4563. sp[#sp+1] = {question = "Which team drafted Shaquille O'Neal?",
  4564. a = "Orlando Magic",
  4565. b = "Miami Heat",
  4566. c = "Dallas Mavericks",
  4567. d = "Phoenix Suns"}
  4568.  
  4569. sp[#sp+1] = {question = "Which team has Shaquille O'Neal not played for?",
  4570. a = "Dallas Mavericks",
  4571. b = "Boston Celtic",
  4572. c = "Phoenix Suns",
  4573. d = "Cleveland Cavaliers"}
  4574.  
  4575. sp[#sp+1] = {question = "Which college did Shaquille O'Neal attend",
  4576. a = "LSU",
  4577. b = "Georgia",
  4578. c = "UCLA",
  4579. d = "USC"}
  4580.  
  4581. sp[#sp+1] = {question = "Which team has Shaquille O'Neal not worn on his jersey?",
  4582. a = "31",
  4583. b = "32",
  4584. c = "33",
  4585. d = "34"}
  4586.  
  4587. sp[#sp+1] = {question = "How many wins did Brett Favre have with the Green Bay Packers?",
  4588. a = "1",
  4589. b = "0",
  4590. c = "3",
  4591. d = "2"}
  4592.  
  4593. sp[#sp+1] = {question = "What is the only jersey number Brett Favre has worn in the NFL?",
  4594. a = "4",
  4595. b = "25",
  4596. c = "9",
  4597. d = "1"}
  4598.  
  4599. sp[#sp+1] = {question = "When was the NHL founded?",
  4600. a = "1917",
  4601. b = "1937",
  4602. c = "1955",
  4603. d = "1967"}
  4604.  
  4605. sp[#sp+1] = {question = "In 2014 how many NHL teams were there?",
  4606. a = "30",
  4607. b = "50",
  4608. c = "100",
  4609. d = "75"}
  4610.  
  4611. sp[#sp+1] = {question = "What professional sport did Charles Barkley play?",
  4612. a = "Basketball",
  4613. b = "Football",
  4614. c = "Baseball",
  4615. d = "Soccer"}
  4616.  
  4617. sp[#sp+1] = {question = "Who has played for the Los Angeles Lakers their entire career?",
  4618. a = "Kobe Bryant",
  4619. b = "Shaquille O'Neal",
  4620. c = "Wilt Chamberlin",
  4621. d = "Michael Jordan"}
  4622.  
  4623. sp[#sp+1] = {question = "Who entered the NBA directly out of high school?",
  4624. a = "Kobe Bryant",
  4625. b = "Reggie Harding",
  4626. c = "Amir Johnson",
  4627. d = "All of the above"}
  4628.  
  4629. sp[#sp+1] = {question = "What college is Phil Knight, alumni of University of Oregon, the co-founder of?",
  4630. a = "Nike",
  4631. b = "Adidas",
  4632. c = "Sports Authority",
  4633. d = "Hats"}
  4634.  
  4635. g[#g+1] = {question = "What country was Samsung created in?",
  4636. a = "South Korea",
  4637. b = "France",
  4638. c = "India",
  4639. d = "USA"}
  4640.  
  4641. e[#e+1] = {question = "In the movie Coraline what do some of the characters get instead of eyes?",
  4642. a = "Buttons",
  4643. b = "Zippers",
  4644. c = "Chocolate",
  4645. d = "None of these"}
  4646.  
  4647. sp[#sp+1] = {question = "Who won the superbowl in 2014?",
  4648. a = "Seattle Seahawks",
  4649. b = "Denver Broncos",
  4650. c = "New England Patriots",
  4651. d = "Indianapolis Colts"}
  4652.  
  4653. e[#e+1] = {question = "In the movie Coraline what do some of the characters get instead of eyes?",
  4654. a = "Buttons",
  4655. b = "Zippers",
  4656. c = "Chocolate",
  4657. d = "None of these"}
  4658.  
  4659. h[#h+1] = {question = "In Greek Mythology, what was a centaur?",
  4660. a = "Man with Horse Legs",
  4661. b = "Dragon With 4 Eyes",
  4662. c = "Cat Goddess",
  4663. d = "Dog With 3 Heads"}
  4664.  
  4665. e[#e+1] = {question = "In the movie Coraline what do some of the characters get instead of eyes?",
  4666. a = "Buttons",
  4667. b = "Zippers",
  4668. c = "Chocolate",
  4669. d = "None of these"}
  4670.  
  4671. --Return a random question from a specified category
  4672. function getQuestion(category)
  4673. if category == "history" then
  4674. return h[math.random(#h)]
  4675. elseif category == "science" then
  4676. return sc[math.random(#sc)]
  4677. elseif category == "geography" then
  4678. return g[math.random(#g)]
  4679. elseif category == "art" then
  4680. return a[math.random(#a)]
  4681. elseif category == "entertainment" then
  4682. return e[math.random(#e)]
  4683. elseif category == "sports" then
  4684. return sp[math.random(#sp)]
  4685. end
  4686. end
  4687.  
  4688. function getNumQuestions()
  4689. print ("Art: "..#a)
  4690. print ("Entertainment: "..#e)
  4691. print ("Geography: "..#g)
  4692. print ("History: "..#h)
  4693. print ("Science: "..#sc)
  4694. print ("Sports: "..#sp)
  4695. end
Add Comment
Please, Sign In to add comment