-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion.js
60 lines (58 loc) · 1.48 KB
/
question.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
//creating an array and passing the number
let questions=[
{
numb:1,
question:"what does html stands for?",
answer:"Hypertext Markup Language",
options:[
"Hypertext Makeup Language",
"Hypertext Markup Language",
"Hyper Markup Language",
"Hypertext Maekup Language"
]
},
{
numb:2,
question:"Telnet is a ___ based computer protocol ",
answer:"Text",
options:[
"Sound",
"Text",
"Image",
"Animation"
]
},
{
numb:3,
question:"Computers connected to a LAN can?",
answer:"share information and/or share peripheral equipment",
options:[
"run faster",
"go on line",
"share information and/or share peripheral equipment",
"E-mail"
]
},
{
numb:4,
question:"Codec refers to ?",
answer:"Coder-decoder",
options:[
"Coder-decoder",
"Co-declaration",
"Command declaration",
"Command decoding"
]
},
{
numb:5,
question:"____ is the most important/powerful computer in a typical network ?",
answer:"Network server",
options:[
"Network client",
"Network server",
"Network station",
"Desktop"
]
}
]