|
1 | 1 | {
|
2 | 2 | "title": "Quiz: Lesson 1",
|
3 | 3 | "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 |
| - }, |
79 | 4 | {
|
80 | 5 | "question": "Where do the values for event parameters get stored?",
|
81 | 6 | "options": [
|
|
92 | 17 | ]
|
93 | 18 | },
|
94 | 19 | {
|
95 |
| - "question": "What is the use of the pragma solidity statement in our smart contract?", |
| 20 | + "question": "Which of these properties does Ethereum have?", |
96 | 21 | "options": [
|
97 | 22 | {
|
98 |
| - "answer": "Defines that the file has Solidity code" |
| 23 | + "answer": "Permissioned" |
| 24 | + }, |
| 25 | + { |
| 26 | + "answer": "Trustless", |
| 27 | + "correct": true |
99 | 28 | },
|
100 | 29 | {
|
101 |
| - "answer": "It lets the Solidity compiler know which version of Solidity we are using", |
| 30 | + "answer": "Decentralized", |
102 | 31 | "correct": true
|
103 | 32 | }
|
104 | 33 | ]
|
|
0 commit comments