Skip to content

Commit 63be5a1

Browse files
committed
chore: update sample quizzes and question
1 parent a35d509 commit 63be5a1

File tree

4 files changed

+12
-149
lines changed

4 files changed

+12
-149
lines changed

utils/questions/question-1.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
2-
"question": "Apart from a user wallet, what else uses a blockchain (Ethereum) address?",
2+
"question": "Which of these properties does Ethereum have?",
33
"options": [
44
{
5-
"answer": "Transactions"
5+
"answer": "Permissioned"
66
},
77
{
8-
"answer": "Smart contracts",
8+
"answer": "Trustless",
99
"correct": true
1010
},
1111
{
12-
"answer": "NFTs"
12+
"answer": "Decentralized",
13+
"correct": true
1314
}
1415
]
1516
}

utils/questions/question-2.json

Lines changed: 0 additions & 16 deletions
This file was deleted.

utils/quizzes/quiz-1.json

Lines changed: 7 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,6 @@
11
{
22
"title": "Quiz: Lesson 1",
33
"questions": [
4-
{
5-
"question": "In order to shut down a blockchain you would have to:",
6-
"options": [
7-
{
8-
"answer": "Disconnect the master node"
9-
},
10-
{
11-
"answer": "Initiate a 51% attack"
12-
},
13-
{
14-
"answer": "It's not possible",
15-
"correct": true
16-
}
17-
]
18-
},
19-
{
20-
"question": "Ethereum’s upgrade on bitcoin technology to allow:",
21-
"options": [
22-
{
23-
"answer": "Logic processing via smart contracts",
24-
"correct": true
25-
},
26-
{
27-
"answer": "Decentralization and transparency"
28-
},
29-
{
30-
"answer": "Consensus mechanisms"
31-
}
32-
]
33-
},
34-
{
35-
"question": "How many parameters can we have in an event?",
36-
"options": [
37-
{
38-
"answer": "As many as we want"
39-
},
40-
{
41-
"answer": "As many as we want with indexed parameters, but non-indexed parameters are limited to three"
42-
},
43-
{
44-
"answer": "As many as we want with non-indexed parameters, but indexed parameters are limited to three if they are named, and four if they’re anonymous",
45-
"correct": true
46-
}
47-
]
48-
},
49-
{
50-
"question": "What can we use to find a past event?",
51-
"options": [
52-
{
53-
"answer": "A filter on an indexed parameter",
54-
"correct": true
55-
},
56-
{
57-
"answer": "It's not possible"
58-
},
59-
{
60-
"answer": "Writing a smart contract"
61-
}
62-
]
63-
},
64-
{
65-
"question": "Ethereum uses something for transaction fees. What's it called?",
66-
"options": [
67-
{
68-
"answer": "Gas",
69-
"correct": true
70-
},
71-
{
72-
"answer": "Turbo"
73-
},
74-
{
75-
"answer": "Oil"
76-
}
77-
]
78-
},
794
{
805
"question": "Where do the values for event parameters get stored?",
816
"options": [
@@ -92,13 +17,17 @@
9217
]
9318
},
9419
{
95-
"question": "What is the use of the pragma solidity statement in our smart contract?",
20+
"question": "Which of these properties does Ethereum have?",
9621
"options": [
9722
{
98-
"answer": "Defines that the file has Solidity code"
23+
"answer": "Permissioned"
24+
},
25+
{
26+
"answer": "Trustless",
27+
"correct": true
9928
},
10029
{
101-
"answer": "It lets the Solidity compiler know which version of Solidity we are using",
30+
"answer": "Decentralized",
10231
"correct": true
10332
}
10433
]

utils/quizzes/quiz-2.json

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)