-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.json
72 lines (72 loc) · 2.43 KB
/
questions.json
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
{
"computerScience":[
{
"question": "What is a constructor?",
"answer": "A constructor is a method that is used to initialize a class object"
},
{
"question": "What is the operating system?",
"answer": "Operating system is a software that acts as an interface between the end user and computer hardware"
},
{
"question": "What does the acronym JVM mean?",
"answer": "It's Java Virtual Machine"
},
{
"question": "What is a palindrome string?",
"answer": "A palindrome string is a string that if inverted remains the same"
},
{
"question": "What do you mean by \"beta version\" of a computer program?",
"answer": "The beta version of a computer program or software is a release of the same that isn’t yet ready for public release and is meant to be modified after user feedback received from beta testing"
},
{
"question": "What is a recursive function?",
"answer": "A function that calls itself"
},
{
"question": "What is a compiler?",
"answer": "A compiler is a computer program that translates written code in one high level programming language into a lower level programming language such as Assembly"
}
],
"geography":[
{
"question": "Which is the largest desert in the world?",
"answer": "It's the Sahara Desert"
},
{
"question": "Which country has the highest population?",
"answer": "China"
},
{
"question": "Which is the longest river in the world and where is it?",
"answer": "It's the Nile and it's in Egypt"
},
{
"question": "Which is the world’s smallest country?",
"answer": "China"
},
{
"question": "Which is the tallest mountain in the world?",
"answer": "Mount Everest"
}
],
"history":[
{
"question": "Who was the biggest loser of World War II and who was its leader?",
"answer": "It was the Germany and its leader was Hitler"
},
{
"question": "Who is the most famous French dictator and where was he born?",
"answer": "He is Napoleone and he was born in Corsica"
},
{
"question": "What is Italy's form of government?",
"answer": "Democratic parliamentary republic"
},
{
"question": "What was the people who dominated the Mediterranean in the period in which Jesus lived?",
"answer": "The ancient Romans, who had Roma as their capital"
}
]
}