Answers Inheritance
1. What is the base contract?
The base contract is the parent contract which is inherited. The child contract inherits the base contract.
2. Which functions are available for derived contracts?
The functions of the base contract are included in the derived contract. The base contract is compiled in bytecode and stored in the derived contract bytecode.
3. What is hierarchical inheritance?
This means that there are multiple derived contracts from one base contract.