Skip to content

Commit 191d4b5

Browse files
committed
Merge branch 'main' of https://github.com/Developer-DAO/academy into quiz-lesson-4
2 parents 2ee506f + 68db246 commit 191d4b5

File tree

30 files changed

+1093
-331
lines changed

30 files changed

+1093
-331
lines changed

pages/lessons/projects/2.mdx

Lines changed: 273 additions & 209 deletions
Large diffs are not rendered by default.

pages/lessons/projects/3.mdx

Lines changed: 209 additions & 113 deletions
Large diffs are not rendered by default.

utils/questions/lesson-2/1-intro/Q1.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"question": "Choose what NFTs can do? Multiple answers possible.",
2+
"question": "What can NFTs do? Multiple answers possible.",
33
"options": [
44
{
55
"answer": "Give access to a DAO",
@@ -13,11 +13,11 @@
1313
"correct": true
1414
},
1515
{
16-
"answer": "Point to storage of an album",
16+
"answer": "Point to the storage of an album",
1717
"correct": true
1818
},
1919
{
20-
"answer": "Replicate one NFT with another"
20+
"answer": "Be spoofed by another contract"
2121
}
2222
]
2323
}

utils/questions/lesson-2/1-intro/Q2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"question": "What is Hardhat? ",
2+
"question": "What is Hardhat?",
33
"options": [
44
{
5-
"answer": "A set of tools that includes a local mini blockchain that can run on your machine",
5+
"answer": "A set of tools that includes a local test blockchain that can run on your machine",
66
"correct": true
77
},
88
{

utils/questions/lesson-2/1-intro/Q3.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"question": "In Solidity, what does the ^ symbol represent when specifying the compiler version?",
2+
"question": "In Solidity, what does the ^ (caret) symbol represent when specifying the compiler version?",
33
"options": [
44
{
55
"answer": "It denotes an exclusive compiler version"

utils/questions/lesson-2/1-intro/Q4.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"question": "Which address does the msg.sender variable represent in Solidity?",
2+
"question": "Which address does the `msg.sender` variable represent in Solidity?",
33
"options": [
44
{
55
"answer": "The contract owner"

utils/questions/lesson-2/1-intro/Q5.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"question": "What is npm? ",
2+
"question": "What is npm?",
33
"options": [
44
{
55
"answer": "A Node.js module that provides a blockchain for running smart contracts"
66
},
77
{
8-
"answer": "A package manager from Node.js ",
8+
"answer": "A package manager for Node.js ",
99
"correct": true
1010
},
1111
{
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"question": "Which steps are needed to code a basic smart contract for deployment?",
3+
"options": [
4+
{
5+
"answer": "Create a smart contract using a code editor."
6+
},
7+
{
8+
"answer": "Create a project template."
9+
},
10+
{
11+
"answer": "Install dependencies."
12+
},
13+
{
14+
"answer": "All of the above.",
15+
"correct": true
16+
}
17+
]
18+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"question": "What does the term 'gas' refer to in the context of Ethereum?",
3+
"options": [
4+
{
5+
"answer": "Digital currency used for transactions."
6+
},
7+
{
8+
"answer": "Unit of measure for computational effort.",
9+
"correct": true
10+
},
11+
{
12+
"answer": "A poisonous fossil fuel."
13+
},
14+
{
15+
"answer": "Encryption algorithm used in smart contracts."
16+
}
17+
]
18+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"question": "Which of the following describes a URI?",
3+
"options": [
4+
{
5+
"answer": "A Uniform Resource Identifier.",
6+
"correct": true
7+
},
8+
{
9+
"answer": "A web address that points to content and information.",
10+
"correct": true
11+
}
12+
]
13+
}

0 commit comments

Comments
 (0)