forked from ahmedprusevic/quiz-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.js
118 lines (118 loc) · 2.88 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
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
const questions = [
{
number: 1,
question: "Eighteen thousandths, written as a decimal, is:",
answers: ["0.0018", "0.018", "0.18", "18"],
correctIndex: 0,
},
{
number: 2,
question: "The next number in the sequence 1, 3, 6, 10, is:",
answers: ["12", "13", "14", "15"],
correctIndex: 3,
},
{
number: 3,
question: "What is the scientific name of a butterfly?",
answers: ["Apis", "Coleoptera", "Formicidae", "Rhopalocera"],
correctIndex: 3,
},
{
number: 4,
question: "How hot is the surface of the sun?",
answers: ["1,233 K", "5,778 K", "12,130 K", "101,300 K"],
correctIndex: 1,
},
{
number: 5,
question: "Who are the actors in The Internship?",
answers: [
"Ben Stiller, Jonah Hill",
"Courteney Cox, Matt LeBlanc",
"Kaley Cuoco, Jim Parsons",
"Vince Vaughn, Owen Wilson",
],
correctIndex: 3,
},
{
number: 6,
question: "What is the capital of Spain?",
answers: ["Berlin", "Buenos Aires", "Madrid", "San Juan"],
correctIndex: 2,
},
{
number: 7,
question:
"What are the school colors of the University of Texas at Austin?",
answers: [
"Black, Red",
"Blue, Orange",
"White, Burnt Orange",
"White, Old gold, Gold",
],
correctIndex: 2,
},
{
number: 8,
question: "What is 70 degrees Fahrenheit in Celsius?",
answers: ["18.8889", "20", "21.1111", "158"],
correctIndex: 2,
},
{
number: 9,
question: "When was Mahatma Gandhi born?",
answers: [
"October 2, 1869",
"December 15, 1872",
"July 18, 1918",
"January 15, 1929",
],
correctIndex: 0,
},
{
number: 10,
question: "How far is the moon from Earth?",
answers: [
"7,918 miles (12,742 km)",
"86,881 miles (139,822 km)",
"238,400 miles (384,400 km)",
"35,980,000 miles (57,910,000 km)",
],
correctIndex: 2,
},
{
number: 11,
question: "What is 65 times 52?",
answers: ["117", "3120", "3380", "3520"],
correctIndex: 2,
},
{
number: 12,
question: "How tall is Mount Everest?",
answers: [
"6,683 ft (2,037 m)",
"7,918 ft (2,413 m)",
"19,341 ft (5,895 m)",
"29,029 ft (8,847 m)",
],
correctIndex: 3,
},
{
number: 13,
question: "When did The Avengers come out?",
answers: ["May 2, 2008", "May 4, 2012", "May 3, 2013", "April 4, 2014"],
correctIndex: 1,
},
{
number: 14,
question: "What is 48,879 in hexidecimal?",
answers: ["0x18C1", "0xBEEF", "0xDEAD", "0x12D591"],
correctIndex: 1,
},
{
number: 15,
question: "Which car manufacturer was the first to win 100 F1 races?",
answers: ["Nissan", "Mercedes", "Ferrari", "Alfa Romeo"],
correctIndex: 2,
},
];