-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.js
68 lines (68 loc) · 1.54 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
let questions = [
{
numb: 1,
question: "Who was the first prime minister of India?",
answer: "Jawahar Lal Nehru",
options: [
"Indira Gandhi",
"Jawahar Lal Nehru",
"Mohammad Ali Jinnah",
"Lal Bahadur Shastri"
]
},
{
numb: 2,
question: "What is the full form of CSS",
answer: "Cascading Style Sheets",
options: [
"Common Style Sheet",
"Style Sheet Cascade",
"Cascading Style Sheets",
"Cascade Style Selector"
]
},
{
numb: 3,
question: "Javascript is an _______ language?",
answer: "Object Oriented",
options: [
"None",
"Object Modelled",
"Procedural",
"Object Oriented"
]
},
{
numb: 4,
question: "Which one of these is a JavaScript package manager?",
answer: "npm",
options: [
"Node.js",
"React",
"TypeScript",
"npm"
]
},
{
numb: 5,
question: "Which tool can you use to ensure code quality?",
answer: "ESLint",
options: [
"jQuery",
"ESLint",
"Angular",
"Debugger"
]
},
{
numb: 6,
question: "Where is Taj Mahal located?",
answer: "Agra",
options: [
"Malaysia",
"California",
"Mathura",
"Agra"
]
}
];