-
Notifications
You must be signed in to change notification settings - Fork 1
/
questions.js
46 lines (46 loc) · 1.51 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
const questions = [
{
text: "Where is the Eiffel Tower located?",
answers: [
{text: "London", correct: false},
{text: "Paris", correct: true},
{text: "Toronto", correct: false},
{text: "New York", correct: false}
] },
{
text: "Christ the Redeemer, a statue of Jesus Christ created by French sculptor Paul Landowski and built by Brazilian engineer Heitor da Silva Costa, stands in what city?",
answers: [
{text: "Rio de Janeiro", correct: true},
{text: "Reykjavík", correct: false},
{text: "Helsinki", correct: false},
{text: "Copenhagen", correct: false}
]
},
{
text: "Completed in 1897, Grant’s Tomb is a classical domed mausoleum in the Morningside Heights neighborhood of Upper Manhattan in New York City. Who is buried here?",
answers: [
{text: "Robert E. Lee", correct: false},
{text: "Jubal Early", correct: false},
{text: "William Tecumseh Sherman", correct: false},
{text: "Ulysses S. Grant", correct: true}
]
},
{
text: "Which of the following is St Paul’s Cathedral?",
answers: [
{image: "images/4-1.jpg", correct: false},
{image: "images/4-2.jpg", correct: true},
{image: "images/4-3.jpg", correct: false},
{image: "images/4-4.jpg", correct: false}
]
},
{
text: "Which of the following pyramids is no longer standing?",
answers: [
{image: "images/5-1.jpg", correct: false},
{image: "images/5-2.jpg", correct: false},
{image: "images/5-3.jpg", correct: true},
{image: "images/5-4.jpg", correct: false}
]
}
];