-
Notifications
You must be signed in to change notification settings - Fork 0
/
bible_trivia.json
1597 lines (1597 loc) · 54.8 KB
/
bible_trivia.json
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
[
{
"question": "When Samson killed 1000 Philistines at Lehi what weapon did he use?",
"choices": [" Sword", " Spear", " Jawbone of an ass", " Bow and arrow"],
"answer": " Jawbone of an ass",
"categories": ["old testament", "judges"],
"reference": "Judges 15:15"
},
{
"question": "How old (years) was David when he was anointed King of Israel?",
"choices": [" 25", " 30", " 35", " 40"],
"answer": " 30",
"categories": ["old testament", "kings", "judges"],
"reference": "2 Samuel 5:4"
},
{
"question": "Aside from Peter and John, which disciple witnessed Jesus’ Transfiguration?",
"choices": [" Andrew", " Philip", " James", " Matthew"],
"answer": " James",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Matthew 17:1-2, Mark 9:2, Luke 9:28-29"
},
{
"question": "In Damascus, whose sight was restored by Ananias?",
"choices": [" Peter", " Paul", " Saul", " John"],
"answer": " Saul",
"categories": ["new testament", "miracles"],
"reference": "Acts 9:17-18"
},
{
"question": "How many rivers were formed from the river that went out of Eden?",
"choices": [" 2", " 3", " 4", " 5"],
"answer": " 4",
"categories": ["old testament"],
"reference": "Genesis 2:10 (Pishon, Gihon, Hiddekel, and Euphrates)"
},
{
"question": "What is the name of the place where Jacob slept and dreamed of Jacob's Ladder?",
"choices": [" Bethel", " Beersheba", " Hebron", " Jericho"],
"answer": " Bethel",
"categories": ["old testament"],
"reference": "Genesis 28:19"
},
{
"question": "Who told Naaman to wash in the river Jordan 7 times in order to cure his leprosy?",
"choices": [" Elijah", " Elisha", " Moses", " Joshua"],
"answer": " Elisha",
"categories": ["old testament", "prophets", "miracles"],
"reference": "2 Kings 5:10"
},
{
"question": "Who announced to Zachariah that his wife would bear a child to be named John the Baptist?",
"choices": [
" Angel Michael",
" Angel Gabriel",
" Angel Raphael",
" Angel Uriel"
],
"answer": " Angel Gabriel",
"categories": ["new testament", "gospels"],
"reference": "Luke 1:13"
},
{
"question": "Who said, '…as for me and my house, we will serve the Lord'?",
"choices": [" Moses", " Joshua", " Samuel", " David"],
"answer": " Joshua",
"categories": ["old testament"],
"reference": "Joshua 24:15"
},
{
"question": "What does the name 'Emmanuel' mean?",
"choices": [" God with us", " God saves", " God provides", " God hears"],
"answer": " God with us",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Matthew 2:23"
},
{
"question": "God tested Abraham by telling him to offer his only son as a burnt offering. Who was that son?",
"choices": [" Isaac", " Ishmael", " Jacob", " Esau"],
"answer": " Isaac",
"categories": ["old testament"],
"reference": "Genesis 22:2"
},
{
"question": "How many pieces of silver was Judas paid to betray Jesus?",
"choices": [" 20", " 25", " 30", " 40"],
"answer": " 30",
"categories": ["new testament", "gospels"],
"reference": "Matthew 26:15"
},
{
"question": "Who personally baptized more people, Jesus or John the Baptist?",
"choices": [" Jesus", " John the Baptist", " Peter", " Paul"],
"answer": " John the Baptist",
"categories": ["new testament", "gospels"],
"reference": "John 4:2"
},
{
"question": "Who witnessed Elijah being taken up to Heaven?",
"choices": [" Elisha", " Samuel", " David", " Nathan"],
"answer": " Elisha",
"categories": ["old testament", "prophets", "miracles"],
"reference": "2 Kings 2:11-12"
},
{
"question": "Only 2 persons in the Bible are reported as being 'taken up to Heaven' (instead of dying). One is Elijah. Who is the other?",
"choices": [" Moses", " Enoch", " Elisha", " Abraham"],
"answer": " Enoch",
"categories": ["old testament", "miracles"],
"reference": "Genesis 5:24"
},
{
"question": "Only 2 persons in the Bible are reported as being 'taken up to Heaven' (instead of dying). Who are they (in chronological order)?",
"choices": [
" Elijah and Enoch",
" Enoch and Elijah",
" Moses and Elijah",
" Enoch and Moses"
],
"answer": " Enoch and Elijah",
"categories": ["old testament", "prophets", "miracles"],
"reference": "Genesis 5:24, 2 Kings 2:11-12"
},
{
"question": "Who hid Joshua’s spies from Jericho’s king?",
"choices": [" Rahab", " Deborah", " Jael", " Ruth"],
"answer": " Rahab",
"categories": ["old testament", "kings", "judges"],
"reference": "Joshua 2:1-4"
},
{
"question": "Moses died at age 120 and was buried in a valley of Moab. Who buried him?",
"choices": [" Joshua", " The Lord", " Aaron", " The Israelites"],
"answer": " The Lord",
"categories": ["old testament", "exodus", "prophets"],
"reference": "Deuteronomy 34:6"
},
{
"question": "How many years were the Israelites in bondage in Egypt?",
"choices": [" 200", " 300", " 400", " 430"],
"answer": " 430",
"categories": ["old testament", "exodus"],
"reference": "Exodous 12:40-41"
},
{
"question": "When they heard of the adversity that had befallen Job, how many of his friends came to comfort him?",
"choices": [" 2", " 3", " 4", " 5"],
"answer": " 3",
"categories": ["old testament"],
"reference": "Job 2:11"
},
{
"question": "Who is the only woman mentioned in Paul’s letter to Philemon?",
"choices": [" Priscilla", " Lydia", " Apphia", " Chloe"],
"answer": " Apphia",
"categories": ["new testament"],
"reference": "Philemon 2"
},
{
"question": "What part of the day did Christ embark on the boat from which He calmed the waters?",
"choices": [" Morning", " Afternoon", " Evening", " Midnight"],
"answer": " Evening",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Mark 4:35"
},
{
"question": "After his epiphany, how many years did Paul spend in Arabia before beginning his ministry?",
"choices": [" 1", " 2", " 3", " 4"],
"answer": " 3",
"categories": ["new testament"],
"reference": "Galatians 1:18"
},
{
"question": "How many troops did Sennacherib lose at the siege of Jerusalem?",
"choices": [" 185,000", " 150,000", " 200,000", " 175,000"],
"answer": " 185,000",
"categories": ["old testament", "kings", "judges"],
"reference": "2 Kings 19:35"
},
{
"question": "Who was the father of John the Baptist?",
"choices": [" Zechariah", " Joseph", " Simeon", " Nicodemus"],
"answer": " Zechariah",
"categories": ["new testament", "gospels"],
"reference": "Luke 3:2"
},
{
"question": "How many demons came out of Mary called Magdalene?",
"choices": [" 5", " 6", " 7", " 8"],
"answer": " 7",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Luke 8:2"
},
{
"question": "When the multitude came out to be baptized, how did John the Baptist characterize them?",
"choices": [
" Children of Abraham",
" Flock of sheep",
" Brood of vipers",
" Lost souls"
],
"answer": " Brood of vipers",
"categories": ["new testament", "gospels"],
"reference": "Luke 3:7"
},
{
"question": "From what tribe of Israel did the Apostle Paul come?",
"choices": [" Judah", " Levi", " Benjamin", " Reuben"],
"answer": " Benjamin",
"categories": ["new testament"],
"reference": "Philippians 3:5"
},
{
"question": "Who directed Paul to preach to the Gentiles?",
"choices": [" Peter", " John", " James", " Jesus"],
"answer": " Jesus",
"categories": ["new testament"],
"reference": "Acts 26:17"
},
{
"question": "Who was the king of Israel when David slew Goliath?",
"choices": [" Saul", " David", " Solomon", " Rehoboam"],
"answer": " Saul",
"categories": ["old testament", "kings", "judges"],
"reference": "1 Samuel 17"
},
{
"question": "To whom did God describe Job as a perfect and upright man?",
"choices": [" Job's wife", " Satan", " Job's friends", " Job's children"],
"answer": " Satan",
"categories": ["old testament"],
"reference": "Job 1:8"
},
{
"question": "Who said, “Silver and Gold have I none, but such as I have I give thee?”",
"choices": [" Peter", " Paul", " John", " James"],
"answer": " Peter",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Acts 3:6"
},
{
"question": "James, the brother of John, was the first Apostle martyred. How was he killed?",
"choices": [" Crucified", " Stoned", " With a sword", " Beheaded"],
"answer": " With a sword",
"categories": ["new testament", "gospels"],
"reference": "Acts 12:2"
},
{
"question": "How old (in years) was Abraham when his son Isaac was born?",
"choices": [" 90", " 95", " 100", " 105"],
"answer": " 100",
"categories": ["old testament"],
"reference": "Genesis 21:5"
},
{
"question": "What was the title placed on Jesus’ cross?",
"choices": [" King of the Jews", " Son of God", " Messiah", " Savior"],
"answer": " King of the Jews",
"categories": ["new testament", "gospels"],
"reference": "Luke 24:38, John 19:19"
},
{
"question": "Who took his rod and stretched out his hand upon the waters of Egypt to turn them into blood?",
"choices": [" Moses", " Aaron", " Joshua", " Elijah"],
"answer": " Aaron",
"categories": ["old testament", "exodus", "prophets", "miracles"],
"reference": "Exodus 7:19-20"
},
{
"question": "Where (city) were the disciples first called Christians?",
"choices": [" Jerusalem", " Antioch", " Rome", " Corinth"],
"answer": " Antioch",
"categories": ["new testament"],
"reference": "Acts 11:26"
},
{
"question": "When Jesus struggled with his cross, who was forced to bear it for him?",
"choices": [
" Simon from Cyrene",
" Joseph of Arimathea",
" Peter",
" John"
],
"answer": " Simon from Cyrene",
"categories": ["new testament", "gospels"],
"reference": "Mark 15:21; Matthew 27:32"
},
{
"question": "According to the Book of Revelations, what needs to be done to receive the crown of life?",
"choices": [
" Faithful until death",
" Giving to the poor",
" Preaching the gospel",
" Praying constantly"
],
"answer": " Faithful until death",
"categories": ["new testament"],
"reference": "Revelations 2:10"
},
{
"question": "What body of water, other than the Red Sea, was parted in the Bible?",
"choices": [
" Nile River",
" Euphrates River",
" Jordan River",
" Tigris River"
],
"answer": " Jordan River",
"categories": ["old testament", "prophets", "exodus", "miracles"],
"reference": "By Joshua (Joshua 3:7-4:18), and by Elijah and Elisha (2 Kings 2:2-8 and 13-14)"
},
{
"question": "How tall was Goliath?",
"choices": [" 4 cubits", " 5 cubits", " 6 cubits and a span", " 7 cubits"],
"answer": " 6 cubits and a span",
"categories": ["old testament", "kings", "judges"],
"reference": "1 Samuel 17:4"
},
{
"question": "What did Paul say was the fulfillment of the Law?",
"choices": [" Faith", " Hope", " Love", " Charity"],
"answer": " Love",
"categories": ["new testament"],
"reference": "Romans 13:10"
},
{
"question": "What is the shortest chapter in the Bible?",
"choices": [" Psalm 116", " Psalm 117", " Psalm 118", " Psalm 119"],
"answer": " Psalm 117",
"categories": ["old testament"],
"reference": "Psalm 117 (2 verses)"
},
{
"question": "There are only two perfect cubes described in Scripture. What is the one described in Revelation?",
"choices": [
" New Jerusalem",
" Solomon's Temple",
" Ark of the Covenant",
" Tower of Babel"
],
"answer": " New Jerusalem",
"categories": ["new testament"],
"reference": "Revelation 21:16"
},
{
"question": "God parted the Red Sea so Moses and the Israelites could cross. What body of water did He part so Joshua and the Israelites could cross?",
"choices": [
" Nile River",
" Euphrates River",
" Jordan River",
" Tigris River"
],
"answer": " Jordan River",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Joshua 3:15-17"
},
{
"question": "At Christ’s crucifixion what time of day did darkness come over the whole land?",
"choices": [" Morning", " Noon", " Afternoon", " Evening"],
"answer": " Noon",
"categories": ["new testament", "gospels"],
"reference": "Matthew 27:45"
},
{
"question": "At Christ’s crucifixion darkness come over the whole land. How long did it last?",
"choices": [" 1 hour", " 2 hours", " 3 hours", " 4 hours"],
"answer": " 3 hours",
"categories": ["new testament", "gospels"],
"reference": "Matthew 27:45"
},
{
"question": "How many persons were sealed as 'servants of our God on their forehead'?",
"choices": [" 12,000", " 72,000", " 120,000", " 144,000"],
"answer": " 144,000",
"categories": ["new testament", "gospels"],
"reference": "Revelations 7:4"
},
{
"question": "What is the name of the City of God?",
"choices": [" Jerusalem", " New Jerusalem", " Bethlehem", " Zion"],
"answer": " New Jerusalem",
"categories": ["new testament", "gospels"],
"reference": "Revelations 3:12"
},
{
"question": "Who was the father of David?",
"choices": [" Jesse", " Saul", " Solomon", " Jonathan"],
"answer": " Jesse",
"categories": ["old testament", "kings", "judges"],
"reference": "Ruth 4:22"
},
{
"question": "To which king did Isaac hide his spousal relationship with Rebecca by claiming she was his sister?",
"choices": [" Pharaoh", " Abimelech", " Nebuchadnezzar", " Ahasuerus"],
"answer": " Abimelech",
"categories": ["old testament"],
"reference": "Genesis 26:1-9"
},
{
"question": "3 named women found Christ’s tomb open and empty: Mary Magdalene, Mary the mother of James, and _____?",
"choices": [" Joanna", " Martha", " Salome", " Susanna"],
"answer": " Joanna",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Luke 24:10"
},
{
"question": "3 named women found Christ’s tomb open and empty: Joanna, Mary the mother of James, and _____?",
"choices": [" Martha", " Mary Magdalene", " Salome", " Susanna"],
"answer": " Mary Magdalene",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Luke 24:10"
},
{
"question": "3 named women found Christ’s tomb open and empty: Mary Magdalene, Joanna, and _____?",
"choices": [" Mary", " Martha", " Salome", " Susanna"],
"answer": " Mary",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Luke 24:10 (the mother of James)"
},
{
"question": "To which tribe of Israel did Moses belong?",
"choices": [" Judah", " Levi", " Benjamin", " Reuben"],
"answer": " Levi",
"categories": ["old testament", "exodus", "prophets"],
"reference": "Exodus 2:1"
},
{
"question": "To what land did Moses flee after killing the Egyptian soldier?",
"choices": [" Canaan", " Midian", " Egypt", " Edom"],
"answer": " Midian",
"categories": ["old testament", "prophets", "exodus"],
"reference": "Exodus 2:15"
},
{
"question": "Christ’s first miracle was turning water into wine. Where did this occur?",
"choices": [" Jerusalem", " Bethlehem", " Cana of Galilee", " Nazareth"],
"answer": " Cana of Galilee",
"categories": ["new testament", "gospels", "miracles"],
"reference": "John 2:6-9, 11"
},
{
"question": "Sarah was Abraham’s first wife. Who was his second?",
"choices": [" Hagar", " Keturah", " Rebekah", " Leah"],
"answer": " Keturah",
"categories": ["old testament"],
"reference": "Genesis 25:1"
},
{
"question": "What relic did Moses remove from Egypt at the time of the Exodus?",
"choices": [
" Ark of the Covenant",
" Staff of Aaron",
" Bones of Joseph",
" Tablets of the Law"
],
"answer": " Bones of Joseph",
"categories": ["old testament", "prophets", "exodus"],
"reference": "Exodus 13:19"
},
{
"question": "How old was Abraham when he was circumcised?",
"choices": [" 90", " 95", " 99", " 100"],
"answer": " 99",
"categories": ["old testament"],
"reference": "Genesis 17"
},
{
"question": "After Christ’s triumphal entrance into Jerusalem and after visiting the temple, where did he spend the night?",
"choices": [" Bethany", " Bethlehem", " Nazareth", " Capernaum"],
"answer": " Bethany",
"categories": ["new testament", "gospels"],
"reference": "Mark 11:11"
},
{
"question": "The first two disciples selected by Jesus were brothers. Name them in alphabetical order (____ and ____).",
"choices": [
" Andrew and Simon",
" James and John",
" Peter and Andrew",
" Philip and Nathanael"
],
"answer": " Andrew and Simon",
"categories": ["new testament", "gospels"],
"reference": "Mark 1:16"
},
{
"question": "Which of the tribes of Israel was prohibited from owning land in Canaan?",
"choices": [" Judah", " Ephraim", " Levites", " Manasseh"],
"answer": " Levites",
"categories": ["old testament"],
"reference": "Deuteronomy 18:2"
},
{
"question": "What city is called the City of David?",
"choices": [" Jerusalem", " Bethlehem", " Nazareth", " Hebron"],
"answer": " Bethlehem",
"categories": ["old testament", "new testament", "kings", "judges"],
"reference": "Luke 2:4"
},
{
"question": "Who ate honey out of a lion’s carcass?",
"choices": [" David", " Samson", " Elijah", " Jonathan"],
"answer": " Samson",
"categories": ["old testament", "kings", "judges"],
"reference": "Judges 14:5-9"
},
{
"question": "What famous city did Nebuchadnezzar rule?",
"choices": [" Nineveh", " Babylon", " Jerusalem", " Tyre"],
"answer": " Babylon",
"categories": ["old testament", "prophets", "kings", "judges"],
"reference": "??"
},
{
"question": "Who was Israel’s first high priest?",
"choices": [" Moses", " Joshua", " Aaron", " Eli"],
"answer": " Aaron",
"categories": ["old testament", "prophets", "exodus"],
"reference": "Exodus 28"
},
{
"question": "Who is the only woman whose age is mentioned in the Bible?",
"choices": [" Eve", " Sarah", " Ruth", " Esther"],
"answer": " Sarah",
"categories": ["old testament"],
"reference": "Genesis 23:1"
},
{
"question": "Which books in the Bible are named after women? (____ and ____, in order of appearance in the Bible)",
"choices": [
" Esther and Ruth",
" Ruth and Esther",
" Judith and Esther",
" Ruth and Judith"
],
"answer": " Ruth and Esther",
"reference": "Ruth and Esther",
"categories": ["old testament"]
},
{
"question": "How many Jews were exiled to Babylon by Nebuchadnezzar?",
"choices": [" 3000", " 4000", " 4600", " 5000"],
"answer": " 4600",
"reference": "Jeremiah 52:30",
"categories": ["old testament", "kings", "judges"]
},
{
"question": "When Moses was preparing the Israelites for their coming confrontation with the 7 nations of Canaan, how large an army (number) did he raise?",
"choices": [" 500000", " 603550", " 700000", " 800000"],
"answer": " 603550",
"categories": ["old testament", "kings", "judges"],
"reference": "Numbers 1:46"
},
{
"question": "When God finally let the Israelites enter the promised land of Canaan, how many nations had to be destroyed?",
"choices": [" 5", " 6", " 7", " 8"],
"answer": " 7",
"categories": ["old testament", "exodus"],
"reference": "Acts 13:19"
},
{
"question": "Who leapt in his mother’s womb when Mary visited?",
"choices": [" Jesus", " John the Baptist", " Peter", " James"],
"answer": " John the Baptist",
"categories": ["new testament", "gospels"],
"reference": "Luke 1:41"
},
{
"question": "After the 5000 ate their fill of the 5 loaves and 2 fishes, how much food was left over?",
"choices": [" 10 baskets", " 11 baskets", " 12 baskets", " 13 baskets"],
"answer": " 12 baskets",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Matthew 14:20"
},
{
"question": "On the 7th day, how many times did Joshua’s army march around Jericho before the walls fell?",
"choices": [" 5", " 6", " 7", " 8"],
"answer": " 7",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Joshua 6:5"
},
{
"question": "Who did God describe as 'a blameless and upright man'?",
"choices": [" Abraham", " Moses", " Job", " David"],
"answer": " Job",
"categories": ["old testament"],
"reference": "Job 1:8"
},
{
"question": "Aside from the Serpent, what other animal in the Old Testament spoke to humans?",
"choices": [" Lion", " Donkey", " Horse", " Eagle"],
"answer": " Donkey",
"categories": ["old testament", "miracles"],
"reference": "Numbers 22:28-30"
},
{
"question": "Whose flock was Moses tending when he encountered the burning bush?",
"choices": [" Jethro", " Laban", " Reuel", " Aaron"],
"answer": " Jethro",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 3:1"
},
{
"question": "Who said, 'Silver and gold have I none; but such as I have I give thee'?",
"choices": [" Peter", " Paul", " John", " James"],
"answer": " Peter",
"categories": ["new testament", "miracles"],
"reference": "Acts 3:6"
},
{
"question": "How long was Jonah in the belly of the great fish?",
"choices": [
" 1 day and 1 night",
" 2 days and 2 nights",
" 3 days and 3 nights",
" 4 days and 4 nights"
],
"answer": " 3 days and 3 nights",
"categories": ["old testament", "prophets"],
"reference": "Jonah 1:17"
},
{
"question": "How many days did Joshua’s troops march around Jerico before the walls fell?",
"choices": [" 5", " 6", " 7", " 8"],
"answer": " 7",
"categories": ["old testament", "miracles", "exodus"],
"reference": "Joshua 6:3-5: Hebrews 11:3"
},
{
"question": "Where is King David buried?",
"choices": [" Jerusalem", " City of David", " Hebron", " Bethlehem"],
"answer": " City of David",
"categories": ["old testament", "kings", "judges"],
"reference": "1 Kings 2:10 (aka Old Jerusalem)"
},
{
"question": "At the transfiguration who appeared and talked to Christ? (____ and ____, in their respective order in the Bible)",
"choices": [
" Elijah and Moses",
" Moses and Elijah",
" Abraham and Moses",
" Moses and Abraham"
],
"answer": " Moses and Elijah",
"reference": "Matthew 17:3; Mark 9:4; Luke 9:30",
"categories": ["new testament", "gospels", "prophets"]
},
{
"question": "How many Beatitudes are there?",
"choices": [" 7", " 8", " 9", " 10"],
"answer": " 8",
"categories": ["new testament", "gospels"],
"reference": "Matthew 5:3-10"
},
{
"question": "How old (in years) was Noah when the flood was upon the earth?",
"choices": [" 500", " 600", " 700", " 800"],
"answer": " 600",
"categories": ["old testament"],
"reference": "Genesis 4:6"
},
{
"question": "Which of Joseph’s (coat of many colors) 11 brothers said to his brothers not to kill Joseph but to cast him in a pit instead?",
"choices": [" Reuben", " Simeon", " Judah", " Levi"],
"answer": " Reuben",
"categories": ["old testament"],
"reference": "Genesis 37:21-22"
},
{
"question": "Paul said he would visit the Romans on this journey to which country?",
"choices": [" Greece", " Spain", " Egypt", " Turkey"],
"answer": " Spain",
"categories": ["new testament"],
"reference": "Romans 15:24"
},
{
"question": "How old (years) was Adam when he died?",
"choices": [" 900", " 930", " 950", " 970"],
"answer": " 930",
"categories": ["old testament"],
"reference": "Genesis 5:3"
},
{
"question": "How many times was Peter told to forgive his brother who had sinned against him?",
"choices": [
" Seven times",
" Seventy times seven times",
" Forty-nine times",
" Seventy times"
],
"answer": " Seventy times seven times",
"categories": ["new testament", "gospels"],
"reference": "Matthew 18:22"
},
{
"question": "After his epiphany on the road to Damascus, how many days was Saul without sight?",
"choices": [" 1", " 2", " 3", " 4"],
"answer": " 3",
"categories": ["new testament"],
"reference": "Acts 9:9"
},
{
"question": "Where is Moses buried?",
"choices": [
" Mount Sinai",
" Valley of Moab",
" Mount Nebo",
" Wilderness of Zin"
],
"answer": " Valley of Moab",
"categories": ["old testament", "exodus"],
"reference": "Deuteronomy 34:6 (in the valley)"
},
{
"question": "About how long was Christ on the cross before he said “My God, my God, why hast thou forsaken me?”",
"choices": [" 6 hours", " 7 hours", " 8 hours", " 9 hours"],
"answer": " 9 hours",
"categories": ["new testament", "gospels"],
"reference": "Matthew 27:46"
},
{
"question": "How old was Moses when he died?",
"choices": [" 110", " 115", " 120", " 125"],
"answer": " 120",
"categories": ["old testament", "exodus"],
"reference": "Deuteronomy 34:7"
},
{
"question": "According to Paul in Romans, how many righteous people are there? (number)",
"choices": [" 0", " 1", " 2", " 3"],
"answer": " 0",
"categories": ["new testament"],
"reference": "Romans 3:10"
},
{
"question": "Adam and Eve had 3 sons. Cain was the firstborn followed by Abel. Who was the third son?",
"choices": [" Seth", " Enosh", " Lamech", " Methuselah"],
"answer": " Seth",
"categories": ["old testament"],
"reference": "Genesis 4:25"
},
{
"question": "To whom did Jesus say, 'Man shall not live by bread alone.'?",
"choices": [" Peter", " Satan", " John", " Judas"],
"answer": " Satan",
"categories": ["new testament", "gospels"],
"reference": "Matthew 4:4"
},
{
"question": "How many loaves and fishes did Jesus use to feed the multitude of 5000? (__ loaves and ___ fishes)",
"choices": [
" 4 loaves and 1 fish",
" 5 loaves and 2 fishes",
" 6 loaves and 3 fishes",
" 7 loaves and 4 fishes"
],
"answer": " 5 loaves and 2 fishes",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Mark 6:41; Matthew 14:17; John 6:9; Luke 9:13"
},
{
"question": "What is the name of the city founded by Cain?",
"choices": [" Enoch", " Lamech", " Methuselah", " Jubal"],
"answer": " Enoch",
"categories": ["old testament"],
"reference": "Genesis 4:17"
},
{
"question": "How many days had Lazarus been dead before being risen by Jesus?",
"choices": [" 2", " 3", " 4", " 5"],
"answer": " 4",
"categories": ["new testament", "gospels", "miracles"],
"reference": "John 11:39"
},
{
"question": "How many devils were cast out of Mary Magdalene?",
"choices": [" 5", " 6", " 7", " 8"],
"answer": " 7",
"categories": ["new testament", "gospels", "miracles"],
"reference": "Luke 8:2"
},
{
"question": "What did John the Baptist eat while preaching in the Judean wilderness?",
"choices": [
" Bread and water",
" Locusts and wild honey",
" Fish and bread",
" Dates and figs"
],
"answer": " Locusts and wild honey",
"categories": ["new testament", "gospels"],
"reference": "Matthew 3:4"
},
{
"question": "Name the mountain from which Moses viewed Canaan and on which he died.",
"choices": [" Sinai", " Carmel", " Nebo", " Zion"],
"answer": " Nebo",
"categories": ["old testament"],
"reference": "Deuteronomy 32:49-50"
},
{
"question": "For refusing to worship a false god, Shadrach, Meshach, and Abednego were cast into a fiery furnace by King Nebuchadnezzar. How many times hotter than normal did the king order the furnace fire to be?",
"choices": [" 3", " 5", " 7", " 10"],
"answer": " 7",
"categories": ["old testament", "prophets", "miracles"],
"reference": "Daniel 3:19"
},
{
"question": "Who is the only Gentile in the Bible to be identified as the Lord’s anointed?",
"choices": [" Nebuchadnezzar", " Cyrus", " Darius", " Xerxes"],
"answer": " Cyrus",
"categories": ["old testament", "kings", "judges"],
"reference": "Isaiah 45:1 [King of Persia 580 BC – 529 BC]"
},
{
"question": "What is the shortest verse in the Bible?",
"choices": [
" 'Jesus wept'",
" 'God is love'",
" 'Rejoice always'",
" 'Pray without ceasing'"
],
"answer": " 'Jesus wept'",
"reference": "John 11:35",
"categories": ["new testament", "gospels"]
},
{
"question": "In Genesis two men are identified as having walked with God. Who are they? (____ and ____, alphabetical order)",
"choices": [
" Enoch and Methuselah",
" Enoch and Noah",
" Methuselah and Noah",
" Noah and Seth"
],
"answer": " Enoch and Noah",
"categories": ["old testament"],
"reference": "Genesis 5:24 and Genesis 6:9"
},
{
"question": "Jacob and Esau were twin brothers. Name their father and mother respectively. (____ and _____)",
"choices": [
" Isaac and Rebecca",
" Abraham and Sarah",
" Isaac and Rachel",
" Abraham and Hagar"
],
"answer": " Isaac and Rebecca",
"categories": ["old testament"],
"reference": "Genesis 25:19"
},
{
"question": "Who negotiated with God to not destroy Sodom if but 10 righteous people could be found there?",
"choices": [" Lot", " Abraham", " Isaac", " Jacob"],
"answer": " Abraham",
"categories": ["old testament"],
"reference": "Genesis 18:23-32"
},
{
"question": "What was the 1st plague God inflicted on Egypt?",
"choices": [
" Frogs",
" Locusts",
" Darkness",
" River waters turned to blood"
],
"answer": " River waters turned to blood",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "What was the 2nd plague God inflicted on Egypt?",
"choices": [
" Frogs",
" Locusts",
" Darkness",
" River waters turned to blood"
],
"answer": " Frogs",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "What was the 3rd plague God inflicted on Egypt?",
"choices": [" Flies", " Frogs", " Lice", " Locusts"],
"answer": " Lice",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "What was the 4th plague God inflicted on Egypt?",
"choices": [" Frogs", " Hail", " Flies", " Boils"],
"answer": " Flies",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "What was the 5th plague God inflicted on Egypt?",
"choices": [" Boils", " Death of animals", " Locusts", " Darkness"],
"answer": " Death of animals",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "What was the 6th plague God inflicted on Egypt?",
"choices": [" Boils", " Frogs", " Hail", " Lice"],
"answer": " Boils",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "What was the 7th plague God inflicted on Egypt?",
"choices": [" Hail", " Darkness", " Locusts", " Death of first-born son"],
"answer": " Hail",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "What was the 8th plague God inflicted on Egypt?",
"choices": [" Frogs", " Locusts", " Lice", " Flies"],
"answer": " Locusts",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "What was the 9th plague God inflicted on Egypt?",
"choices": [" Darkness", " Hail", " Boils", " Frogs"],
"answer": " Darkness",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "What was the 10th plague God inflicted on Egypt?",
"choices": [" Death of first-born son", " Frogs", " Lice", " Flies"],
"answer": " Death of first-born son",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "How many plagues did God inflict on Egypt?",
"choices": [" 7", " 8", " 9", " 10"],
"answer": " 10",
"categories": ["old testament", "exodus", "miracles"],
"reference": "Exodus 7-12"
},
{
"question": "How many books are in the New Testament?",
"choices": [" 24", " 25", " 26", " 27"],
"answer": " 27",
"categories": ["new testament"],
"reference": "-nil-"
},
{
"question": "Which city was Jesus entering when Zacchaeus climbed a sycamore tree to see him?",
"choices": [" Jerusalem", " Jericho", " Bethlehem", " Nazareth"],
"answer": " Jericho",
"categories": ["new testament", "gospels"],
"reference": "Luke 19:1-4"
},
{
"question": "What is the longest chapter in the Bible?",
"choices": [" Psalm 117", " Psalm 118", " Psalm 119", " Psalm 120"],
"answer": " Psalm 119",
"categories": ["old testament"],
"reference": "Psalm 119 (176 verses)"
},
{
"question": "Where did Cain go when he left Eden?",
"choices": [" Nod", " Canaan", " Egypt", " Midian"],
"answer": " Nod",
"categories": ["old testament"],
"reference": "Genesis 4:16"
},
{
"question": "Who replaced Judas as the twelfth apostle?",
"choices": [" Paul", " Matthias", " Barnabas", " Silas"],
"answer": " Matthias",
"categories": ["new testament"],
"reference": "Acts 1:15-26"
},
{
"question": "What is the most common name in the Bible?",
"choices": [" John", " Mary", " Zechariah", " Joseph"],
"answer": " Zechariah",
"categories": ["new testament", "gospels"],
"reference": "-nil-"
},
{
"question": "Of what were the 12 gates of New Jerusalem made?",
"choices": [" Gold", " Silver", " Pearls", " Bronze"],
"answer": " Pearls",
"categories": ["new testament"],
"reference": "Revelations 21:21"
},
{
"question": "Name Jezebel’s husband.",
"choices": [" Ahab", " Jehu", " Jehoshaphat", " Omri"],
"answer": " Ahab",
"reference": "1 Kings 16:31",
"categories": ["old testament", "kings", "judges"]
},