-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathdata.js
More file actions
35 lines (35 loc) · 855 Bytes
/
data.js
File metadata and controls
35 lines (35 loc) · 855 Bytes
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
// use this quizData in your app.
export const quizData = [{
"question": "Which language runs in a web browser?",
"a": "Java",
"b": "C",
"c": "Python",
"d": "JavaScript",
"correct": "d",
},
{
"question": "What does CSS stand for?",
"a": "Central Style Sheets",
"b": "Cascading Style Sheets",
"c": "Cascading Simple Sheets",
"d": "Cars SUVs Sailboats",
"correct": "b",
},
{
"question": "What does HTML stand for?",
"a": "Hypertext Markup Language",
"b": "Hypertext Markdown Language",
"c": "Hyperloop Machine Language",
"d": "Helicopters Terminals Motorboats Lamborginis",
"correct": "a",
},
{
"question": "What year was JavaScript launched?",
"a": "1996",
"b": "1995",
"c": "1994",
"d": "none of the above",
"correct": "b",
},
// you can add more quiz here
]