You interact with a smart contract and see a gas usage of 50,000 gas with a gas cost of 15Gwei.
How much Ether would you have to pay to the miner?
Options:
A.
750,000,000,000,000 Wei
B.
750,000,000,000 Wei
C.
750,000,000 Wei
D.
A flat fee of 1 Ether
Answer:
A
Question 3
Solidity files:
Options:
A.
can't be split across multiple files, everything should be in one single file.
B.
can be split across multiple files, but every contract must be in a file with the same name as the contract itself.
C.
can be spread across multiple files. To import all contract from a file you can use "import 'myfile.sol'. To import Contract MyContract from myfile.sol you use "import {MyContract as SomeContract} from 'myfile.sol';".