-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.js
57 lines (57 loc) · 1.59 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
let questions = [
{
numb: 1,
question: "What does HTML stand for?",
answer: "C. Hyper Text Markup Language",
options: [
"A. Hyper Type Multi Language",
"B. Hyper Text Multiple Language",
"C. Hyper Text Markup Language",
"D. Home Text Multi Language"
]
},
{
numb: 2,
question: "What does CSS stand for?",
answer: "A. Cascading Style Sheet",
options: [
"A. Cascading Style Sheet",
"B. Cute Style Sheet",
"C. Computer Style Sheet",
"D. Codehal Style Sheet"
]
},
{
numb: 3,
question: "What does PHP stand for?",
answer: "A. Hypertext Preprocessor",
options: [
"A. Hypertext Preprocessor",
"B. Hometext Programming",
"C. Hypertext Preprogramming",
"D. Programming Hypertext Preprocessor"
]
},
{
numb: 4,
question: "What does SQL stand for?",
answer: "D. Structured Query Language",
options: [
"A. Strength Query Language",
"B. Stylesheet Query Language",
"C. Science Question Language",
"D. Structured Query Language"
]
},
{
numb: 5,
question: "What does XML stand for?",
answer: "D. Extensible Markup Language",
options: [
"A. Excellent Multiple Language",
"B. Explore Multiple Language",
"C. Extra Markup Language",
"D. Extensible Markup Language"
]
}
];