Challenge 2: Handling a Bank Account
In this challenge, you will define methods for handling a bank account using concepts of inheritance.
We'll cover the following...
Problem statement
In this challenge, we will implement methods in the parent class and its corresponding child class.
The initializers for both classes have been defined for you.
Task 1
In the Account
class, implement the getBalance()
method that returns balance
.
Task 2
In the Account
class, implement ...