Multiple Choice
Address.Call vs. Address.Delegatecall:
A) Address.call() is used for calling other contracts using the scope of the called contract in terms of storage variables. Address.delegatecall() is used for libraries, which uses the storage variables of the contract who called. Libraries are a great way to re-use already existing code and delegatecall can make sure that no storage is used from the library, instead it looks like the code is directly copied into the calling contract.
B) Address.delegatecall() is used for calling other contracts using the scope of the called contract in terms of storage variables. Address.call() is used for libraries, which uses the storage variables of the contract who called. Libraries are a great way to re-use already existing code and call() can make sure that no storage is used from the library, instead it looks like the code is directly copied into the calling contract.
Correct Answer:

Verified
Correct Answer:
Verified
Q48: Externally Owned Accounts (EoA):<br>A) are changing their
Q49: A version pragma is a great way
Q50: You need to use _ to get
Q51: When a smart contract pays out money:<br>A)
Q52: Importing from GitHub:<br>A) works across all compilers
Q54: Using truffle-contract over Web3.js:<br>A) is a must
Q55: To avoid issues during Ethereum platform upgrades:<br>A)
Q56: Sending one Ether is actually internally translated:<br>A)
Q57: Finish the sentence: The Library Web3.js is
Q58: It's not possible to use inheritance from