-
Notifications
You must be signed in to change notification settings - Fork 0
/
question1.js
40 lines (38 loc) · 1.11 KB
/
question1.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
let questions = [
{
numb: 1,
question: "Which of the following is true for variable names in Python?",
answer: "unlimited length",
options: [
"underscore and ampersand are the only two special characters allowed",
"unlimited length",
"all private members must have leading and trailing underscores",
"none of the mentioned",
],
},
{
numb: 2,
question: "Which of the following is not a type of database?",
answer: "Decentralized",
options: ["Hierarchical", "Network", "Distributed", "Decentralized"],
},
{
numb: 3,
question:
"Suppose you knows Selection sort, Insertion sort & Quick sort which one he wil used for best time complexity ?",
answer: "Quick sort",
options: [
"Selection sort",
"Insertion sort",
"Quick sort",
"All of the above",
],
},
{
numb: 4,
question:
"Which of the following is known as a set of entities of the same type that share same properties, or attributes?",
answer: "Entity set",
options: ["Relation set", "Tuples", "Entity set", "Entity Relation model"],
},
];