-
Notifications
You must be signed in to change notification settings - Fork 6
/
jepcah.py
executable file
·9024 lines (9018 loc) · 310 KB
/
jepcah.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
""" Fill in the blanks of random Cards Against Humanity questions with random Jeopardy answers
"""
from random import Random
random=Random()
jep={
"description": "A sampling of 1000 Jeopardy questions and metadata. For the full dataset, see http://www.reddit.com/r/datasets/comments/1uyd0t/200000_jeopardy_questions_in_a_json_file/",
"questions": [
{
"category": "DIPLOMACY",
"air_date": "2000-10-13",
"question": "'Term for a formal agreement; it's also a Honda'",
"value": "$200",
"answer": "Accord",
"round": "Double Jeopardy!",
"show_number": "3705"
},
{
"category": "SEAS",
"air_date": "1998-11-03",
"question": "'Bab El Mandeb, Arabic for \"Gate of Tears\", connects the Gulf of Aden with this colorful sea'",
"value": "$400",
"answer": "Red Sea",
"round": "Jeopardy!",
"show_number": "3257"
},
{
"category": "ZOOLOGY",
"air_date": "2000-06-06",
"question": "'This pet bird comes in 2 main types, depending on its singing: choppers & rollers'",
"value": "$600",
"answer": "Canaries",
"round": "Double Jeopardy!",
"show_number": "3642"
},
{
"category": "ARGENTINA",
"air_date": "2002-12-17",
"question": "'Ushuaia, the world's southernmost city, lies on this island territory of Argentina'",
"value": "$600",
"answer": "Tierra del Fuego",
"round": "Jeopardy!",
"show_number": "4212"
},
{
"category": "FASHION DESIGNERS",
"air_date": "1992-10-26",
"question": "'She was 86 when the Broadway musical about her premiered in 1969'",
"value": "$400",
"answer": "Coco Chanel",
"round": "Jeopardy!",
"show_number": "1871"
},
{
"category": "THEY USED TO BE IN CHARGE",
"air_date": "1999-09-16",
"question": "'Benjamin Netanyahu'",
"value": "$100",
"answer": "Israel",
"round": "Jeopardy!",
"show_number": "3454"
},
{
"category": "SAMS OF THE CINEMA",
"air_date": "2006-05-18",
"question": "'The last works he directed weren't Westerns but music videos starring Julian Lennon'",
"value": "$1600",
"answer": "Sam Peckinpah",
"round": "Double Jeopardy!",
"show_number": "5004"
},
{
"category": "FOOD",
"air_date": "2007-12-07",
"question": "'Poblano is one type of this dark Mexican sauce made with chiles & chocolate'",
"value": "$800",
"answer": "mole",
"round": "Double Jeopardy!",
"show_number": "5350"
},
{
"category": "THE BIRDS & THE BEES",
"air_date": "2007-02-15",
"question": "'It's a small, chunky brown bird with a short bill & a silent initial W'",
"value": "$2000",
"answer": "wren",
"round": "Double Jeopardy!",
"show_number": "5169"
},
{
"category": "TUNNEL",
"air_date": "2007-04-16",
"question": "'The 11 1/2-mile tunnel between Bologna & Florence, Italy bears the name of this Italian mountain chain'",
"value": "$1000",
"answer": "the Apennines",
"round": "Jeopardy!",
"show_number": "5211"
},
{
"category": "MOVIE STARS OLD & NEW",
"air_date": "2004-07-15",
"question": "'There was occasional talk of a comeback during her 49-year retirement from the screen'",
"value": "$1600",
"answer": "Greta Garbo",
"round": "Double Jeopardy!",
"show_number": "4589"
},
{
"category": "\"HAL\"",
"air_date": "2009-12-28",
"question": "'Hebrew for \"praise God\", it's a shout of praise to God'",
"value": "$200",
"answer": "hallelujah",
"round": "Jeopardy!",
"show_number": "5821"
},
{
"category": "YOU LOOK LIKE A GREEK GOD",
"air_date": "2007-06-13",
"question": "'His realm had 5 rivers: the Acheron, Cocytos, Lethe, Phlegethon & Styx'",
"value": "$800",
"answer": "Hades",
"round": "Jeopardy!",
"show_number": "5253"
},
{
"category": "BALLET",
"air_date": "1989-09-12",
"question": "'\"Rond de jambe\" means a rotary movement of this body part, on the floor or in the air'",
"value": "$400",
"answer": "the leg",
"round": "Double Jeopardy!",
"show_number": "1152"
},
{
"category": "WHAT'S ON \"TAP\"?",
"air_date": "2011-12-02",
"question": "'To place close together for comparison or contrast'",
"value": "$2000",
"answer": "to juxtapose",
"round": "Double Jeopardy!",
"show_number": "6260"
},
{
"category": "ONE-NAMED PERSONALITIES",
"air_date": "2009-09-22",
"question": "'In 2002 this singer & other activists founded DATA, which stands for Debt, AIDS, Trade, Africa'",
"value": "$400",
"answer": "Bono",
"round": "Double Jeopardy!",
"show_number": "5752"
},
{
"category": "FILING CHAPTER 11",
"air_date": "2004-04-21",
"question": "'Chapter 11 of this book begins, \"At the appointed time I returned to Miss Havisham's\"'",
"value": "$800",
"answer": "Great Expectations",
"round": "Double Jeopardy!",
"show_number": "4528"
},
{
"category": "OUT WEST",
"air_date": "2011-02-28",
"question": "'From his time as a hunter of them in the Old West, it was the animal in the nickname of William F. Cody'",
"value": "$200",
"answer": "a buffalo",
"round": "Jeopardy!",
"show_number": "6096"
},
{
"category": "TRANSPORTATION",
"air_date": "2007-05-30",
"question": "'Since 1899 these stalwart animals used in transport have served as the mascots of the Army Corps of Cadets'",
"value": "$1,000",
"answer": "mules",
"round": "Double Jeopardy!",
"show_number": "5243"
},
{
"category": "BRITISH BANDS",
"air_date": "2009-04-03",
"question": "'The genesis of Genesis included this man singing lead; he left for the \"big time\" as a solo artist'",
"value": "$800",
"answer": "Peter Gabriel",
"round": "Jeopardy!",
"show_number": "5665"
},
{
"category": "A FUNGUS AMONG US",
"air_date": "2010-03-29",
"question": "'Traditionally, dogs or pigs are used to detect these pricey fungi that come in black & white varieties'",
"value": "$400",
"answer": "truffles",
"round": "Jeopardy!",
"show_number": "5886"
},
{
"category": "A PASSION FOR FASHION",
"air_date": "2000-11-09",
"question": "'He's the clothing designer who gave us Tommy Girl cologne'",
"value": "$400",
"answer": "Tommy Hilfiger",
"round": "Double Jeopardy!",
"show_number": "3724"
},
{
"category": "TELEVISION",
"air_date": "1990-05-16",
"question": "'30 years ago she was Mary Stone on \"The Donna Reed Show\"; today she's Christine on \"Coach\"'",
"value": "$500",
"answer": "Shelley Fabares",
"round": "Jeopardy!",
"show_number": "1328"
},
{
"category": "BATMAN TV VILLAINS",
"air_date": "2009-07-23",
"question": "'Julie Newmar, Eartha Kitt & Lee Meriwether as this purr-fect villain (not all at the same time)'",
"value": "$400",
"answer": "Catwoman",
"round": "Jeopardy!",
"show_number": "5744"
},
{
"category": "STATE OF PLAY",
"air_date": "2010-03-02",
"question": "'Broncos,Rockies'",
"value": "$600",
"answer": "Colorado",
"round": "Jeopardy!",
"show_number": "5867"
},
{
"category": "ESTIMATED PROPHET",
"air_date": "2006-09-28",
"question": "'This visionary Lebanese-American poet penned \"The Garden of the Prophet\"'",
"value": "$1600",
"answer": "Kahlil Gibran",
"round": "Double Jeopardy!",
"show_number": "5069"
},
{
"category": "YELLOWSTONE NATIONAL PARK",
"air_date": "2004-10-19",
"question": "'(Sarah of the Clue Crew reads from Yellowstone National Park.) This backbone of North America separating east- from west-flowing rivers cuts through the plateau of Yellowstone Park'",
"value": "$1000",
"answer": "the continental divide",
"round": "Jeopardy!",
"show_number": "4627"
},
{
"category": "GAMES",
"air_date": "1996-04-09",
"question": "'In this game a person whose eyes are covered must determine a person's identity by feeling the face'",
"value": "$400",
"answer": "Blind Man\\'s Bluff",
"round": "Jeopardy!",
"show_number": "2682"
},
{
"category": "IN PARIS",
"air_date": "1999-04-14",
"question": "'A Parisian must-see on anyone's list, this museum is the home of the Mona Lisa'",
"value": "$200",
"answer": "The Louvre",
"round": "Jeopardy!",
"show_number": "3373"
},
{
"category": "POLITICAL IDIOMS",
"air_date": "2006-07-25",
"question": "'Used to describe a response made without thinking, its physical counterpart can take 1/20 second'",
"value": None,
"answer": "knee-jerk",
"round": "Final Jeopardy!",
"show_number": "5052"
},
{
"category": "\"G.G.\"",
"air_date": "2005-06-28",
"question": "'Longtime Chicago Bear Harold \"Red\" Grange was also known by this \"spectral\" nickname'",
"value": "$400",
"answer": "the Galloping Ghost",
"round": "Double Jeopardy!",
"show_number": "4807"
},
{
"category": "ARTISTS ON FILM",
"air_date": "2000-02-28",
"question": "'Anthony Quinn in \"Lust for Life\"'",
"value": "$600",
"answer": "Paul Gauguin",
"round": "Double Jeopardy!",
"show_number": "3571"
},
{
"category": "I AM CURIOUS YELLOW",
"air_date": "2002-03-12",
"question": "'Only incorporated as a city in 1970, Yellowknife is the capital of this vast Canadian administrative region'",
"value": "$1200",
"answer": "the Northwest Territories",
"round": "Double Jeopardy!",
"show_number": "4042"
},
{
"category": "FAMOUS SPEECHES",
"air_date": "1992-05-28",
"question": "'In 1859 he told a Va. courtroom, \"I never did intend murder, or...to excite or incite slaves to rebellion\"'",
"value": "$1,000",
"answer": "John Brown",
"round": "Double Jeopardy!",
"show_number": "1799"
},
{
"category": "YOUNG ACTORS",
"air_date": "2007-10-10",
"question": "'She appeared in \"Santa Clause 3\" with brother Spencer before being nominated for an Oscar at age 10 in 2007'",
"value": "$2000",
"answer": "Abigail Breslin",
"round": "Double Jeopardy!",
"show_number": "5308"
},
{
"category": "HAIL, HAIL ROCK 'N' ROLL",
"air_date": "2000-05-10",
"question": "'This Stevie Wonder hit is subtitled \"Everything's Alright\"'",
"value": "$500",
"answer": "\"Uptight\"",
"round": "Jeopardy!",
"show_number": "3623"
},
{
"category": "THE RUSSIANS ARE COMING",
"air_date": "2008-05-14",
"question": "'The only son of Nicholas II, Alexis was the last male heir born to this royal family while it ruled Russia'",
"value": "$1,000",
"answer": "the Romanovs",
"round": "Jeopardy!",
"show_number": "5463"
},
{
"category": "HALLS OF FAME",
"air_date": "2003-03-10",
"question": "'It opened in Cooperstown, New York in 1939'",
"value": "$200",
"answer": "Baseball Hall of Fame",
"round": "Jeopardy!",
"show_number": "4271"
},
{
"category": "RIVER DEEP, MOUNTAIN HIGH",
"air_date": "2004-12-08",
"question": "'The names of this highest mountain in Western Europe & this highest mountain in the Pacific both mean \"White Mountain\"'",
"value": "$1200",
"answer": "Mont Blanc and Mauna Kea",
"round": "Double Jeopardy!",
"show_number": "4663"
},
{
"category": "FRIENDS",
"air_date": "2005-07-14",
"question": "'Born in 1963, this former member of the Groundlings is the oldest of the 6 \"Friends\"'",
"value": "$800",
"answer": "Lisa Kudrow",
"round": "Jeopardy!",
"show_number": "4819"
},
{
"category": "WARS",
"air_date": "1984-11-29",
"question": "'The material cost of this war was greater than all other wars put together'",
"value": "$400",
"answer": "World War II",
"round": "Double Jeopardy!",
"show_number": "59"
},
{
"category": "GENESIS QUOTE FILL-IN",
"air_date": "2011-02-03",
"question": "'\"There were ____ in the earth in those days\"'",
"value": "$800",
"answer": "giants",
"round": "Jeopardy!",
"show_number": "6079"
},
{
"category": "LEAVE 'EM LAUGHING",
"air_date": "2007-09-12",
"question": "'This term for an object of ridicule sounds like shares bought in a comedy club'",
"value": "$800",
"answer": "laughing stock",
"round": "Double Jeopardy!",
"show_number": "5288"
},
{
"category": "GOOD PROVERBS",
"air_date": "1999-06-11",
"question": "'\"All good things must\" do this'",
"value": "$200",
"answer": "Come to an end",
"round": "Jeopardy!",
"show_number": "3415"
},
{
"category": "U.S. STATES",
"air_date": "1990-02-02",
"question": "'3 of the top 10 U.S. cities in population are in this state'",
"value": "$500",
"answer": "Texas (Dallas, Houston, San Antonio)",
"round": "Jeopardy!",
"show_number": "1255"
},
{
"category": "MI CASA ES SU CASA",
"air_date": "2004-01-19",
"question": "'From 1939 until his death in 1975 (yes, he's still dead) he lived in the palace of El Pardo just NW of Madrid'",
"value": "$800",
"answer": "Francisco Franco",
"round": "Double Jeopardy!",
"show_number": "4461"
},
{
"category": "RULING WORDS",
"air_date": "1987-12-10",
"question": "'A gynocracy is government by women; this, from Greek for \"man\", is government by men'",
"value": "$1000",
"answer": "an androcracy",
"round": "Double Jeopardy!",
"show_number": "759"
},
{
"category": "COLLEGES & UNIVERSITIES",
"air_date": "1998-03-18",
"question": "'Located in Pyongyang, North Korea's oldest university is named for this late Communist leader'",
"value": "$1000",
"answer": "Kim Il-sung",
"round": "Double Jeopardy!",
"show_number": "3128"
},
{
"category": "WATERFALLS",
"air_date": "1998-10-14",
"question": "'Sherlock Holmes & Dr. Moriarty went over these Swiss falls; only Holmes survived'",
"value": "$600",
"answer": "Reichenbach Falls",
"round": "Double Jeopardy!",
"show_number": "3243"
},
{
"category": "ECONOMICS",
"air_date": "2007-10-31",
"question": "'In 2005 Americans didn't put money away but spent all they earned & more, for the 1st negative rate of this since 1933'",
"value": "$2000",
"answer": "savings",
"round": "Double Jeopardy!",
"show_number": "5323"
},
{
"category": "BODY LANGUAGE",
"air_date": "2011-01-12",
"question": "'(Jimmy of the Clue Crew stands in front of a diagram of a human skeleton) To attack where someone is most vulnerable is to go for one of these large veins here or here'",
"value": "$1000",
"answer": "go for the jugular",
"round": "Jeopardy!",
"show_number": "6063"
},
{
"category": "GEEK SQUAD",
"air_date": "2008-06-11",
"question": "'(A Geek indicates a computer port.) Today it's easy connecting devices by using USB; older computers use 2 types of ports, parallel & this one'",
"value": "$1000",
"answer": "serial",
"round": "Jeopardy!",
"show_number": "5483"
},
{
"category": "MEDICAL ABBREV.",
"air_date": "2003-03-31",
"question": "'A test used to diagnose diabetes:(please, no eating or drinking after midnight)'",
"value": "$2000",
"answer": "fasting blood sugar",
"round": "Double Jeopardy!",
"show_number": "4286"
},
{
"category": "THE 17th CENTURY",
"air_date": "1998-10-22",
"question": "'The 1648 Peace of Westphalia ended a war that began on May 23 of this year'",
"value": None,
"answer": "1618 (when The Thirty Years\\' War began)",
"round": "Final Jeopardy!",
"show_number": "3249"
},
{
"category": "LITERARY TRIVIA",
"air_date": "1993-04-01",
"question": "'Dew-of-june, an Indian heroine, appears in his novel \"The Pathfinder\"'",
"value": "$400",
"answer": "James Fenimore Cooper",
"round": "Double Jeopardy!",
"show_number": "1984"
},
{
"category": "MOVIE CRITTERS",
"air_date": "2006-06-28",
"question": "'1972:\"Sounder\"'",
"value": "$400",
"answer": "a dog",
"round": "Double Jeopardy!",
"show_number": "5033"
},
{
"category": "BILL PULLMAN FILMS",
"air_date": "1997-10-13",
"question": "'Though he lost Meg Ryan in \"Sleepless In Seattle\", he won Sandra Bullock's heart in this film'",
"value": "$300",
"answer": "While You Were Sleeping",
"round": "Jeopardy!",
"show_number": "3016"
},
{
"category": "FAMOUS NAMES",
"air_date": "1999-09-28",
"question": "'In April 1999 Paul Simon took center field for the dedication of a monument to this man'",
"value": None,
"answer": "Joe DiMaggio",
"round": "Final Jeopardy!",
"show_number": "3462"
},
{
"category": "CELEBRITY BIRTHDAYS",
"air_date": "1997-06-30",
"question": "'This Dane could tickle the ivories for Robert Loggia January 3, their mutual birthday'",
"value": "$300",
"answer": "Victor Borge",
"round": "Jeopardy!",
"show_number": "2971"
},
{
"category": "ODE TO ENGLAND",
"air_date": "1993-05-14",
"question": "'William's protection against besiegers, it's now the home of the Beefeaters'",
"value": "$1000",
"answer": "the Tower of London",
"round": "Double Jeopardy!",
"show_number": "2015"
},
{
"category": "\"U\"2",
"air_date": "2007-06-29",
"question": "'A small, cone-shaped structure at the back of the soft palate'",
"value": "$2000",
"answer": "a uvula",
"round": "Double Jeopardy!",
"show_number": "5265"
},
{
"category": "HOW DO YOU WORK THIS THING?",
"air_date": "2001-09-14",
"question": "'Insert in drain; crank handle clockwise while moving wire to dislodge clog; hike up pants'",
"value": "$400",
"answer": "a snake",
"round": "Double Jeopardy!",
"show_number": "3915"
},
{
"category": "2006 SPORTS LAUGHS",
"air_date": "2007-06-14",
"question": "'A U.K. company was vilified for marketing \"Little Hooliganz\", action figures of fans of this sport'",
"value": "$1600",
"answer": "soccer",
"round": "Double Jeopardy!",
"show_number": "5254"
},
{
"category": "HISTORIC NAMES",
"air_date": "1997-03-06",
"question": "'In 1891 this ex-chancellor of Germany was elected to the Reichstag'",
"value": "$200",
"answer": "Otto Von Bismarck",
"round": "Double Jeopardy!",
"show_number": "2889"
},
{
"category": "ALSO A VEGAS CASINO",
"air_date": "2009-03-18",
"question": "'A couple of owls'",
"value": "$1000",
"answer": "hooters",
"round": "Jeopardy!",
"show_number": "5653"
},
{
"category": "THE \"BUC\"s",
"air_date": "2009-05-22",
"question": "'It's grain ground into flour, o-tay?'",
"value": "$400",
"answer": "buckwheat",
"round": "Double Jeopardy!",
"show_number": "5700"
},
{
"category": "THE ADVENTURES OF HUCKLEBERRY FINN",
"air_date": "2008-11-06",
"question": "'The title adventures concern a young boy named Huckleberry Finn & an escaped slave of this name'",
"value": "$200",
"answer": "Jim",
"round": "Jeopardy!",
"show_number": "5559"
},
{
"category": "CLASSICAL GAS",
"air_date": "2011-12-09",
"question": "'This French composer of \"Danse Macabre\" was writing music by the time he was 5'",
"value": "$2000",
"answer": "Camille Saint-Saëns",
"round": "Double Jeopardy!",
"show_number": "6265"
},
{
"category": "BIG SCREEN BIO SUBJECTS",
"air_date": "2004-10-27",
"question": "'\"A Beautiful Mind\"'",
"value": "$2000",
"answer": "(John) Nash",
"round": "Double Jeopardy!",
"show_number": "4633"
},
{
"category": "POETIC POTPOURRI",
"air_date": "1997-03-31",
"question": "'Dorothy Parker called her 1931 book of verse \"Death And\" these, 2 things Ben Franklin said were certainties'",
"value": "$300",
"answer": "Death and taxes",
"round": "Jeopardy!",
"show_number": "2906"
},
{
"category": "A TOUR OF THE REAGAN LIBRARY",
"air_date": "2003-05-13",
"question": "'(Jimmy of the Clue Crew gives the clue.) In 1989 the Notre Dame football team presented Reagan with this man's letter sweater'",
"value": "$1000",
"answer": "George Gipp",
"round": "Jeopardy!",
"show_number": "4317"
},
{
"category": "WHEN WAS THAT, PIERRE?",
"air_date": "1998-12-04",
"question": "'Tres tragique was this year when France was first occupied in World War II'",
"value": "$100",
"answer": "1940",
"round": "Jeopardy!",
"show_number": "3280"
},
{
"category": "13-LETTER WORDS",
"air_date": "2007-04-17",
"question": "'En francais, s'il vous plait! This thick slice of tenderloin is broiled & served with potatoes & a bernaise sauce'",
"value": "$1600",
"answer": "chateaubriand",
"round": "Double Jeopardy!",
"show_number": "5212"
},
{
"category": "DEATH IN POP",
"air_date": "1998-02-03",
"question": "'Mark Dinning sang about a \"Teen\" one; Peter Stampfel, about a \"Surfer\" one'",
"value": "$600",
"answer": "Angel",
"round": "Double Jeopardy!",
"show_number": "3097"
},
{
"category": "\"M\"MMM GOOD",
"air_date": "2005-02-11",
"question": "'This popular leafy soul food side dish is an excellent source of vitamins A & C'",
"value": "$2000",
"answer": "mustard greens",
"round": "Double Jeopardy!",
"show_number": "4710"
},
{
"category": "ANDY WARHOL",
"air_date": "2000-12-18",
"question": "'Andy's \"15 minutes of fame\" quote was once the motto of this magazine'",
"value": "$600",
"answer": "Interview",
"round": "Double Jeopardy!",
"show_number": "3751"
},
{
"category": "SCIENCE",
"air_date": "2008-11-12",
"question": "'These were first seen in human cells in 1882; the exact number, 46, was determined in 1956'",
"value": "$600",
"answer": "chromosomes",
"round": "Jeopardy!",
"show_number": "5563"
},
{
"category": "ALABAMMY BOUND",
"air_date": "2011-04-14",
"question": "'This city's News boasts the largest circulation of any Alabama newspaper'",
"value": "$1200",
"answer": "Birmingham",
"round": "Double Jeopardy!",
"show_number": "6129"
},
{
"category": "SUPERHERO NAMES THROUGH PICTURES",
"air_date": "2010-02-10",
"question": "'X marks the spot, man, when this guy opens his peeper'",
"value": "$200",
"answer": "Cyclops",
"round": "Jeopardy!",
"show_number": "5853"
},
{
"category": "FAMOUS TRIALS",
"air_date": "2009-07-10",
"question": "'Stabbed during his capture at Harpers Ferry, this abolitionist spent most of his 1859 trial lying on a cot'",
"value": "$800",
"answer": "John Brown",
"round": "Double Jeopardy!",
"show_number": "5735"
},
{
"category": "BESTSELLERS",
"air_date": "1999-07-09",
"question": "'Neale Donald Walsch, author of \"Conversations with\" this being, says that anybody can have them'",
"value": "$100",
"answer": "God",
"round": "Jeopardy!",
"show_number": "3435"
},
{
"category": "SCIENTISTS",
"air_date": "1997-06-02",
"question": "'While a professor at Stanford in 1970 he published \"Vitamin C And The Common Cold\"'",
"value": "$600",
"answer": "Linus Pauling",
"round": "Double Jeopardy!",
"show_number": "2951"
},
{
"category": "BANDS OF THE '80S",
"air_date": "1997-01-01",
"question": "'The Proclaimers hit the U.S. charts when \"I'm Gonna Be (500 Miles)\" was featured in this Johnny Depp film'",
"value": "$400",
"answer": "Benny and Joon",
"round": "Jeopardy!",
"show_number": "2843"
},
{
"category": "LIP GLOSS",
"air_date": "2007-01-23",
"question": "'Zyderm & Zyplast are types of these injections that you can get in your lips to feel more \"Hollywood\"'",
"value": "$1000",
"answer": "collagen injections",
"round": "Jeopardy!",
"show_number": "5152"
},
{
"category": "TREES",
"air_date": "1996-12-19",
"question": "'It has cricket bat & weeping varieties'",
"value": "$200",
"answer": "Willow",
"round": "Double Jeopardy!",
"show_number": "2834"
},
{
"category": "FOOD",
"air_date": "1998-06-25",
"question": "'Its history shows the French taking an Austrian crescent roll & making it with puff pastry, not bread dough'",
"value": "$300",
"answer": "Croissant",
"round": "Jeopardy!",
"show_number": "3199"
},
{
"category": "TO YOUR HEALTH",
"air_date": "2001-04-24",
"question": "'Ballistic, static & contract-relax are the 3 main types of this pre-workout activity'",
"value": "$400",
"answer": "Stretching",
"round": "Jeopardy!",
"show_number": "3842"
},
{
"category": "THE CONGRESS",
"air_date": "1991-11-14",
"question": "'Representing Massachusetts' 8th District, Joseph P. Kennedy is the son of this late New York senator'",
"value": "$200",
"answer": "Robert F. Kennedy",
"round": "Double Jeopardy!",
"show_number": "1659"
},
{
"category": "ATHLETES",
"air_date": "2005-04-22",
"question": "'Once a star basketball player for USC, from 1997 to 2000 she coached the WNBA's Phoenix Mercury'",
"value": "$2000",
"answer": "Cheryl Miller",
"round": "Double Jeopardy!",
"show_number": "4760"
},
{
"category": "POP MUSIC",
"air_date": "1998-07-13",
"question": "'This group's \"Night Fever\" stayed at No. 1 longer than any other single of 1978 -- 8 weeks'",
"value": "$300",
"answer": "Bee Gees",
"round": "Jeopardy!",
"show_number": "3211"
},
{
"category": "HIGH SCHOOLS",
"air_date": "1999-03-05",
"question": "'In 1989 students at a Cambridge, Mass. school boycotted Coca-Cola to protest its ties to this formerly racist country'",
"value": "$400",
"answer": "South Africa",
"round": "Double Jeopardy!",
"show_number": "3345"
},
{
"category": "FOREIGN FASHION",
"air_date": "2001-03-13",
"question": "'Before a Swede puts on his skor, these, he puts on his sockor'",
"value": "$200",
"answer": "Shoes",
"round": "Double Jeopardy!",
"show_number": "3812"
},
{
"category": "CAMILLA",
"air_date": "2001-12-06",
"question": "'Camilla Parker Bowles was born Camilla Shand on July 17, 1947 in this world capital'",
"value": "$200",
"answer": "London",
"round": "Jeopardy!",
"show_number": "3974"
},
{
"category": "YOGA",
"air_date": "2000-09-04",
"question": "'Though you won't see Rover in it, the position seen here is called \"downward facing\" this'",
"value": "$600",
"answer": "Dog",
"round": "Double Jeopardy!",
"show_number": "3676"
},
{
"category": "TRANSPORTATION",
"air_date": "1988-11-15",
"question": "'Doing this comes from the Roman custom of offering a drink to the gods when launching a ship'",
"value": "$4,000",
"answer": "Breaking Champagne on the Prow",
"round": "Double Jeopardy!",
"show_number": "967"
},
{
"category": "PHYSICAL SCIENCE",
"air_date": "1999-04-28",
"question": "'Solid water is ice; solid carbon dioxide has this 2-word name'",
"value": "$100",
"answer": "dry ice",
"round": "Jeopardy!",
"show_number": "3383"
},
{
"category": "NOT TO BE CONFUSED",
"air_date": "2011-10-04",
"question": "'Compost is used as fertilizer; this dessert is fruit cooked slowly in a sugar syrup'",
"value": "$400",
"answer": "compote",
"round": "Double Jeopardy!",
"show_number": "6217"
},
{
"category": "FAMILY VALUES",
"air_date": "2010-12-24",
"question": "'In 2008 & 2009 foundations of this Arkansas family's company claimed it gave $423 million in cash & in-kind gifts'",
"value": "$200",
"answer": "the Waltons",
"round": "Jeopardy!",
"show_number": "6050"
},
{
"category": "ALPHABET SOUP",
"air_date": "1984-09-13",
"question": "'He's the heavyweight of the A-Team'",
"value": "$200",
"answer": "Mr. T",
"round": "Double Jeopardy!",
"show_number": "4"
},
{
"category": "BUSINESS & INDUSTRY",
"air_date": "2000-04-05",
"question": "'In the 1970s, this white buck-shoed singer & his family endorsed the West Bend coffee maker'",
"value": "$800",
"answer": "Pat Boone",
"round": "Double Jeopardy!",
"show_number": "3598"
},
{
"category": "LAST BUT NOT LEAST",
"air_date": "2001-10-19",
"question": "'This band gave its last concert with Jerry Garcia at Chicago's Soldier Field in 1995'",
"value": "$200",
"answer": "the Grateful Dead",
"round": "Jeopardy!",
"show_number": "3940"
},
{
"category": "2- OR 11-LETTER WORDS",
"air_date": "2010-11-12",
"question": "'Every 3 years; make it an adverb to fit the category'",
"value": "$2000",
"answer": "triannually",
"round": "Double Jeopardy!",
"show_number": "6020"
},
{
"category": "MILITARY LEADERS",
"air_date": "1991-11-07",
"question": "'Robert E. Lee's truce flag was delivered to this general in 1865; in 1876 he was killed at Little Big Horn'",
"value": "$200",
"answer": "George Custer",
"round": "Double Jeopardy!",
"show_number": "1654"
},
{
"category": "ROCK & ROLL FRONTMEN",
"air_date": "2008-04-16",
"question": "'Roger Daltrey'",
"value": "$400",
"answer": "The Who",
"round": "Jeopardy!",
"show_number": "5443"
},
{
"category": "HEALTH & MEDICINE",
"air_date": "1998-09-07",
"question": "'The pineal gland also makes this popular hormone used to remedy sleep disorder & jet lag'",
"value": "$800",
"answer": "Melatonin",
"round": "Double Jeopardy!",
"show_number": "3216"
},
{
"category": "BIBLICAL TRANSPORTATION",
"air_date": "1992-05-21",
"question": "'In Genesis 6 God said it should be pitched within & without with pitch'",
"value": "$400",
"answer": "Noah\\'s Ark (the ark accepted)",
"round": "Jeopardy!",
"show_number": "1794"
},
{
"category": "FILL IN THE BLANK-ISTAN",
"air_date": "2001-07-16",
"question": "'This country's 4 provinces are Baluchistan, the Northwest Frontier, Sindh, & Punjab'",
"value": "$400",
"answer": "Pakistan",
"round": "Double Jeopardy!",
"show_number": "3901"
},
{
"category": "DANCE ORIGINS",
"air_date": "2011-01-11",
"question": "'Flamenco'",
"value": "$200",
"answer": "Spain",
"round": "Jeopardy!",
"show_number": "6062"
},
{
"category": "MUSICAL COMPOSITIONS",
"air_date": "2005-11-30",
"question": "'Mozart's \"Hunt\", heard here, is this type of chamber piece'",
"value": "$800",
"answer": "a (string) quartet",
"round": "Double Jeopardy!",
"show_number": "4883"
},
{
"category": "FRENCH BRED",
"air_date": "2000-09-28",
"question": "'On May 6, 1758 Arras, France hatched this politician who later hatched the Reign of Terror'",
"value": "$400",
"answer": "Robespierre",
"round": "Jeopardy!",
"show_number": "3694"
},