1. (Account Inheritance Hierarchy) Create an inheritance hierarchy that a bank might use to represent customer bank accounts. All customers at this bank can deposit money into their accounts and withdraw money from their accounts. More specific types of accounts also exist. Savings accounts, for instance, earn interest on the money they hold. Checking accounts, on the other hand, don't earn interest and charge a fee per transaction. Start with class Account from this chapter and create two subclasses Savings Account and CheckingAccount. A Savings Account should also include a data attribute indicating the interest rate. A Savings Account's calculate_interest method should return the Decimal result of multiplying the interest rate by the account balance. SavingsAccount should inherit methods deposit and withdraw without redefining them. A CheckingAccount should include a Decimal data attribute that represents the fee charged per transaction. Class Checking Account should override methods deposit and withdraw so that they subtract the fee from the account balance whenever either transaction is performed successfully. CheckingAccount's versions of these methods should invoke the base-class Account versions to update the account balance. CheckingAccount's withdraw method should charge a fee only if money is withdrawn (that is, the withdrawal amount does not exceed the account balance). Create objects of each class and tests their methods. Add interest to the SavingsAccount object by invoking its calculate_interest method. then passing the returned interest amount to the object's deposit method.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

Python 

1. (Account Inheritance Hierarchy) Create an inheritance hierarchy that a bank might use to
represent customer bank accounts. All customers at this bank can deposit money into
their accounts and withdraw money from their accounts. More specific types of accounts
also exist. Savings accounts, for instance, earn interest on the money they hold.
Checking accounts, on the other hand, don't earn interest and charge a fee per
transaction.
Start with class Account from this chapter and create two subclasses SavingsAccount
and CheckingAccount. A Savings Account should also include a data attribute
indicating the interest rate. A Savings Account's calculate_interest method should
return the Decimal result of multiplying the interest rate by the account balance.
SavingsAccount should inherit methods deposit and withdraw without redefining
them.
A CheckingAccount should include a Decimal data attribute that represents the fee
charged per transaction. Class CheckingAccount should override methods deposit
and withdraw so that they subtract the fee from the account balance whenever either
transaction is performed successfully. CheckingAccount's versions of these methods
should invoke the base-class Account versions to update the account balance.
CheckingAccount's withdraw method should charge a fee only if money is withdrawn
(that is, the withdrawal amount does not exceed the account balance).
Create objects of each class and tests their methods. Add interest to the
SavingsAccount object by invoking its calculate_interest method. then passing the
returned interest amount to the object's deposit method.
Transcribed Image Text:1. (Account Inheritance Hierarchy) Create an inheritance hierarchy that a bank might use to represent customer bank accounts. All customers at this bank can deposit money into their accounts and withdraw money from their accounts. More specific types of accounts also exist. Savings accounts, for instance, earn interest on the money they hold. Checking accounts, on the other hand, don't earn interest and charge a fee per transaction. Start with class Account from this chapter and create two subclasses SavingsAccount and CheckingAccount. A Savings Account should also include a data attribute indicating the interest rate. A Savings Account's calculate_interest method should return the Decimal result of multiplying the interest rate by the account balance. SavingsAccount should inherit methods deposit and withdraw without redefining them. A CheckingAccount should include a Decimal data attribute that represents the fee charged per transaction. Class CheckingAccount should override methods deposit and withdraw so that they subtract the fee from the account balance whenever either transaction is performed successfully. CheckingAccount's versions of these methods should invoke the base-class Account versions to update the account balance. CheckingAccount's withdraw method should charge a fee only if money is withdrawn (that is, the withdrawal amount does not exceed the account balance). Create objects of each class and tests their methods. Add interest to the SavingsAccount object by invoking its calculate_interest method. then passing the returned interest amount to the object's deposit method.
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Concept of pointer parameter
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education