-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.js
102 lines (92 loc) · 2.6 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
102
const QuestionCollection=[
{
question: "What is the capital of France?",
answers:[
{text:"Moscow",correct:false},
{text:"Vienna",correct:false},
{text:"Paris",correct:true},
{text:"Belgrade",correct:false},
]
},
{
question: "Who wrote Romeo and Juliet?",
answers:[
{text:"Charles Dickens",correct:false},
{text:"William Shakespeare",correct:true},
{text:"Mark Twain",correct:false},
{text:"Jane Austen",correct:false},
]
},
{
question: "What is the chemical symbol for gold?",
answers:[
{text:"Ag",correct:false},
{text:"W",correct:false},
{text:"Hg",correct:false},
{text:"Au",correct:true},
]
},
{
question: "What is the hardest natural substance on Earth?",
answers:[
{text:"Gold",correct:false},
{text:"Iron",correct:false},
{text:"Diamond",correct:true},
{text:"Quartz",correct:false},
]
},
{
question: " Which country is leading in the development and deployment of 5G technology?",
answers:[
{text:"USA",correct:false},
{text:"Japan",correct:false},
{text:"Germany",correct:false},
{text:"China",correct:true},
]
},
{
question: " What is the main purpose of the Domain Name System (DNS)?",
answers:[
{text:"Resolving domain names",correct:true},
{text:"Routing traffic",correct:false},
{text:"Hosting websites",correct:false},
{text:"Encrypting data",correct:false},
]
},
{
question: " What is \"phishing\" in the context of cybersecurity?",
answers:[
{text:"Unauthorized data access",correct:false},
{text:"Virus infection",correct:false},
{text:"Deceptive email scams",correct:true},
{text:"Data encryption",correct:false},
]
},
{
question: "Which country won the FIFA World Cup in 2018?",
answers:[
{text:"Brazil",correct:false},
{text:"France",correct:false},
{text:"Argentina",correct:true},
{text:"England",correct:false},
]
},
{
question: "Which country is the most successful in the history of the Rugby World Cup?",
answers:[
{text:"Australia",correct:false},
{text:"England",correct:false},
{text:"South Africa",correct:false},
{text:"New Zealand",correct:true},
]
},
{
question: "Is Naitik really a Gay?",
answers:[
{text:"Maybe",correct:false},
{text:"Sure no doubt",correct:true},
{text:"Just mimic to be one",correct:false},
{text:"Has banged me for most of the times",correct:false},
]
},
]