forked from HackerUSA-CE/FSI-Create-a-Trivia-Game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.js
82 lines (82 loc) · 1.78 KB
/
questions.js
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
let questions = [
{
text: `What is the first book of the Old Testament?
A. Leviticus
B. Numbers
C. Genesis
D. Exodus`,
correctAnswer: "C"
},
{
text: `How would one say goodbye in Spanish?
A. Hola
B. Au Revoir
C. Salir
D. Adiós`,
correctAnswer: "D"
},
{
text: `What is the French word for 'hat'?
A. Casque
B. Chapeau
C. Bonnet
D. Écharpe`,
correctAnswer: "B"
},
{
text: `The New York Times slogan is, 'All the News That's Fit to...';
A. Digest
B. Look
C. Read
D. Print`,
correctAnswer: "D"
},
{
text: `Which restaurant's mascot is a clown?
A. Chick-Fil-A
B. Sonic
C. McDonald's
D. Whataburger`,
correctAnswer: "C"
},
{
text: `Which of the following is the IATA code for Manchester Airport?
A. MAN
B. EGLL
C. LHR
D. EGCC`,
correctAnswer: "A"
},
{
text: `If you are caught 'Goldbricking', what are you doing wrong?
A. Stealing
B. Cheating
C. Slacking
D. Smoking`,
correctAnswer: "C"
},
{
text: `Earth is located in which galaxy?
A. The Black Hole
B. The Milky Way Galaxy
C. The Mars Galaxy
D. The Galaxy Note`,
correctAnswer: "B"
},
{
text: `What are Panama hats made out of?
A. Silk
B. Hemp
C. Flax
D. Straw`,
correctAnswer: "D"
},
{
text: `What kind of aircraft was developed by Igor Sikorsky in the United States in 1942?
A. Jet
B. Space Capsule
C. Helicopter
D. Stealth Blimp`,
correctAnswer: "C"
}
]