File tree Expand file tree Collapse file tree 20 files changed +198
-101
lines changed Expand file tree Collapse file tree 20 files changed +198
-101
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "question" : " Choose what NFTs can do? Multiple answers possible. " ,
2
+ "question" : " " ,
3
3
"options" : [
4
4
{
5
- "answer" : " Give access to a DAO " ,
5
+ "answer" : " " ,
6
6
"correct" : true
7
7
},
8
8
{
9
- "answer" : " Do the dishes "
9
+ "answer" : " "
10
10
},
11
11
{
12
- "answer" : " Represent a concert ticket " ,
12
+ "answer" : " " ,
13
13
"correct" : true
14
14
},
15
15
{
16
- "answer" : " Point to storage of an album" ,
17
- "correct" : true
16
+ "answer" : " "
18
17
},
19
18
{
20
- "answer" : " Replicate one NFT with another "
19
+ "answer" : " "
21
20
}
22
21
]
23
22
}
Original file line number Diff line number Diff line change 1
1
{
2
- "question" : " What is Hardhat? " ,
2
+ "question" : " " ,
3
3
"options" : [
4
4
{
5
- "answer" : " A set of tools that includes a local mini blockchain that can run on your machine " ,
5
+ "answer" : " " ,
6
6
"correct" : true
7
7
},
8
8
{
9
- "answer" : " A code editor in the browser "
9
+ "answer" : " "
10
10
},
11
11
{
12
- "answer" : " A security patch for most Linux operating systems"
12
+ "answer" : " " ,
13
+ "correct" : true
14
+ },
15
+ {
16
+ "answer" : " "
13
17
},
14
18
{
15
- "answer" : " Safety apparel for space travel "
19
+ "answer" : " "
16
20
}
17
21
]
18
22
}
Original file line number Diff line number Diff line change 1
1
{
2
- "question" : " In Solidity, what does the ^ symbol represent when specifying the compiler version? " ,
2
+ "question" : " " ,
3
3
"options" : [
4
4
{
5
- "answer" : " It denotes an exclusive compiler version"
5
+ "answer" : " " ,
6
+ "correct" : true
6
7
},
7
8
{
8
- "answer" : " It indicates a fallback function "
9
+ "answer" : " "
9
10
},
10
11
{
11
- "answer" : " It signifies a dangerous computation"
12
+ "answer" : " " ,
13
+ "correct" : true
12
14
},
13
15
{
14
- "answer" : " It specifies a compatible range of compiler versions" ,
15
- "correct" : true
16
+ "answer" : " "
17
+ },
18
+ {
19
+ "answer" : " "
16
20
}
17
21
]
18
22
}
Original file line number Diff line number Diff line change 1
1
{
2
- "question" : " Which address does the msg.sender variable represent in Solidity? " ,
2
+ "question" : " " ,
3
3
"options" : [
4
4
{
5
- "answer" : " The contract owner"
5
+ "answer" : " " ,
6
+ "correct" : true
6
7
},
7
8
{
8
- "answer" : " The Ethereum smart contract "
9
+ "answer" : " "
9
10
},
10
11
{
11
- "answer" : " The Ethereum network"
12
+ "answer" : " " ,
13
+ "correct" : true
12
14
},
13
15
{
14
- "answer" : " The caller of the current function" ,
15
- "correct" : true
16
+ "answer" : " "
17
+ },
18
+ {
19
+ "answer" : " "
16
20
}
17
21
]
18
22
}
Original file line number Diff line number Diff line change 1
1
{
2
- "question" : " What is npm? " ,
2
+ "question" : " " ,
3
3
"options" : [
4
4
{
5
- "answer" : " A Node.js module that provides a blockchain for running smart contracts"
5
+ "answer" : " " ,
6
+ "correct" : true
7
+ },
8
+ {
9
+ "answer" : " "
6
10
},
7
11
{
8
- "answer" : " A package manager from Node.js " ,
12
+ "answer" : " " ,
9
13
"correct" : true
10
14
},
11
15
{
12
- "answer" : " A framework for building web applications "
16
+ "answer" : " "
17
+ },
18
+ {
19
+ "answer" : " "
13
20
}
14
21
]
15
22
}
Original file line number Diff line number Diff line change 1
1
{
2
- "question" : " Why do we want our ProjectNFT contract to import ERC721.sol from OpenZeppelin? " ,
2
+ "question" : " " ,
3
3
"options" : [
4
4
{
5
- "answer" : " To declare a smart contract in Solidity"
5
+ "answer" : " " ,
6
+ "correct" : true
6
7
},
7
8
{
8
- "answer" : " Because Led Zeppelin's discography has automatic customs clearance "
9
+ "answer" : " "
9
10
},
10
11
{
11
- "answer" : " To keep track of the total supply of NFTs "
12
+ "answer" : " " ,
13
+ "correct" : true
12
14
},
13
15
{
14
- "answer" : " To inherit the properties of ERC721 into the ProjectNFT contract " ,
15
- "correct" : true
16
+ "answer" : " "
17
+ },
18
+ {
19
+ "answer" : " "
16
20
}
17
21
]
18
22
}
Original file line number Diff line number Diff line change 1
1
{
2
- "question" : " What does the totalSupply variable do? " ,
2
+ "question" : " " ,
3
3
"options" : [
4
4
{
5
- "answer" : " Tells us we can't mint any more NFTs"
5
+ "answer" : " " ,
6
+ "correct" : true
7
+ },
8
+ {
9
+ "answer" : " "
6
10
},
7
11
{
8
- "answer" : " Stores the current number of minted NFTs " ,
12
+ "answer" : " " ,
9
13
"correct" : true
10
14
},
11
15
{
12
- "answer" : " Identifies each new NFT created "
16
+ "answer" : " "
13
17
},
14
18
{
15
- "answer" : " It keeps track of the number of functions in the contract "
19
+ "answer" : " "
16
20
}
17
21
]
18
22
}
Original file line number Diff line number Diff line change 1
1
{
2
- "question" : " What does the constructor function do in the contract? " ,
2
+ "question" : " " ,
3
3
"options" : [
4
4
{
5
- "answer" : " Defines the copyright license "
5
+ "answer" : " " ,
6
+ "correct" : true
6
7
},
7
8
{
8
- "answer" : " Declares the version of Solidity being used "
9
+ "answer" : " "
9
10
},
10
11
{
11
- "answer" : " Assigns a name and symbol to the NFT being created " ,
12
+ "answer" : " " ,
12
13
"correct" : true
14
+ },
15
+ {
16
+ "answer" : " "
17
+ },
18
+ {
19
+ "answer" : " "
13
20
}
14
21
]
15
22
}
Original file line number Diff line number Diff line change 1
1
{
2
- "question" : " Open Zeppelin contracts have evolved over time by..... " ,
2
+ "question" : " " ,
3
3
"options" : [
4
4
{
5
- "answer" : " becoming more basic and focused on specific functionalities"
5
+ "answer" : " " ,
6
+ "correct" : true
6
7
},
7
8
{
8
- "answer" : " becoming less modular "
9
+ "answer" : " "
9
10
},
10
11
{
11
- "answer" : " opening up more possibilities and become richer in functionality " ,
12
+ "answer" : " " ,
12
13
"correct" : true
14
+ },
15
+ {
16
+ "answer" : " "
17
+ },
18
+ {
19
+ "answer" : " "
13
20
}
14
21
]
15
22
}
Original file line number Diff line number Diff line change 1
1
{
2
- "question" : " ETH is an ERC token " ,
2
+ "question" : " " ,
3
3
"options" : [
4
4
{
5
- "answer" : " True"
5
+ "answer" : " " ,
6
+ "correct" : true
7
+ },
8
+ {
9
+ "answer" : " "
6
10
},
7
11
{
8
- "answer" : " False " ,
12
+ "answer" : " " ,
9
13
"correct" : true
14
+ },
15
+ {
16
+ "answer" : " "
17
+ },
18
+ {
19
+ "answer" : " "
10
20
}
11
21
]
12
22
}
You can’t perform that action at this time.
0 commit comments