forked from aaronpowell/trivia-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.js
101 lines (100 loc) · 2.87 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
// Questions from
// https://opentdb.com/api.php?amount=10&category=18
module.exports = [
{
category: "Science: Computers",
type: "multiple",
difficulty: "easy",
question: "What amount of bits commonly equals one byte?",
correct_answer: "8",
incorrect_answers: ["1", "2", "64"]
},
{
category: "Science: Computers",
type: "boolean",
difficulty: "easy",
question:
"The programming language "Python" is based off a modified version of "JavaScript".",
correct_answer: "False",
incorrect_answers: ["True"]
},
{
category: "Science: Computers",
type: "multiple",
difficulty: "easy",
question: "In web design, what does CSS stand for?",
correct_answer: "Cascading Style Sheet",
incorrect_answers: [
"Counter Strike: Source",
"Corrective Style Sheet",
"Computer Style Sheet"
]
},
{
category: "Science: Computers",
type: "multiple",
difficulty: "easy",
question:
"What is the code name for the mobile operating system Android 7.0?",
correct_answer: "Nougat",
incorrect_answers: ["Ice Cream Sandwich", "Jelly Bean", "Marshmallow"]
},
{
category: "Science: Computers",
type: "boolean",
difficulty: "easy",
question: "RAM stands for Random Access Memory.",
correct_answer: "True",
incorrect_answers: ["False"]
},
{
category: "Science: Computers",
type: "multiple",
difficulty: "hard",
question:
"The internet domain .fm is the country-code top-level domain for which Pacific Ocean island nation?",
correct_answer: "Micronesia",
incorrect_answers: ["Fiji", "Tuvalu", "Marshall Islands"]
},
{
category: "Science: Computers",
type: "multiple",
difficulty: "medium",
question: "What does the acronym CDN stand for in terms of networking?",
correct_answer: "Content Delivery Network",
incorrect_answers: [
"Content Distribution Network",
"Computational Data Network",
"Compressed Data Network"
]
},
{
category: "Science: Computers",
type: "multiple",
difficulty: "hard",
question:
"What is the name of the process that sends one qubit of information using two bits of classical information?",
correct_answer: "Quantum Teleportation",
incorrect_answers: [
"Super Dense Coding",
"Quantum Entanglement",
"Quantum Programming"
]
},
{
category: "Science: Computers",
type: "multiple",
difficulty: "easy",
question: "This mobile OS held the largest market share in 2012.",
correct_answer: "iOS",
incorrect_answers: ["Android", "BlackBerry", "Symbian"]
},
{
category: "Science: Computers",
type: "multiple",
difficulty: "medium",
question: "Approximately how many Apple I personal computers were created?",
correct_answer: "200",
incorrect_answers: ["100", "500", "1000"]
}
];