-
Notifications
You must be signed in to change notification settings - Fork 1
/
question.js
64 lines (64 loc) · 1.68 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
61
62
63
64
let quiz = [
{
q:'3+4=7',
options:['true','false'],
answer:0
},
{
q:'what is 22+6?',
options:[99,56,16,28] ,
answer:3
},
{
q:'what is color of banana?',
options:['red','yellow','white','blue'] ,
answer:1
},
{
q: 'What is 4 * 2?',
options:[ '6','8'],
answer: 1
},
{
q: 'What does HTML means?',
options:['Hyper Tag Markup Language','Hyper Text Markup Language',
'Hyperlinks Text Mark Language','Hyperlinking Text Markup Language'],
answer: 1
},
{
q:'Which one is the first search engine?',
options:['Google','Altavista','Archie','WAIS'],
answer:2
},
{
q:'Number of bit used by the IPv6 address',
options:['32 bit','64 bit','128 bit','256 bit'],
answer: 3
},
{
q:'First computer virus is known as',
options:['Rabbit','Creeper Virus','Elk Cloner','SCA Virus'],
answer:1
},
{
q:'Firewall in computer is used for',
options:['Security','Data Transmission','Authentication','Monitoring'],
answer:0
},
{
q:'Which of the following is not an operating system',
options:['DOS','Mac','C','Linux'],
answer:3
},
{
q:'Which of the following is not a database management software',
options:['MySQL','Oracle','Sybase','COBOL'],
answer:3
},
{
q:'Number of layers in the OSI(Open Systems Interconnection) Model',
options:['9','3','7','11'],
answer:2
},
]
let insName ='Quiz Game';