Account Management System You have to implement a console-based account management system in this assignment. An account management system is an application for maintaining a personal account in a bank. Features of the system An account management system needs to store information about Bank Accounts and Customers. • This system supports two different types of accounts (Checking and Savings). • All customers have a name, address, and phone number. Each customer has their unique account number and the bank will identify customers by only that account number. • A customer may open both a savings account and a checking account. However, a customer must not have more than one savings account or checking account. All bank accounts must have the account number, balance, and date created. • • There are some features that are defined for all accounts, checkBalance(), printStatement(), make Deposit(), transferAmount(), calculate Zakat() and make Withdrawal() but the withdrawal limit is different based on the account type. Savings account customers cannot withdraw more than their balance but the checking account holders can withdraw more than their account balance (up to a maximum of 5000 PKR). - makeDeposit(): The Deposit Function will deposit the specified amount in the account. amount will be deducted make Withdrawal(): Withdraw function to withdraw an amount checkBalance(): Display function to display name and balance. printStatement(): show the complete details of the customer, account number, time of the transaction, date of transaction, transaction amount, and remaining balance. transfer Amount(): The transfer method transfers the amount from one bank account to the bank account selected by the user. calculateZakat(): This function will calculate zakat annually. It should ensure that the zakat will be calculated if the total balance is greater than or equal to 20,000. Zakat will be calculated using this formula (TotalBalance *2.5)/100. Zakat is only calculated for Savings accounts. displayAllDeductions(): This function displays all deductions made along with their details on the said account (e.g., Zakat for Savings and Tax for Checking). Checking accounts have additional functionality that may have transaction fees for deposits and withdrawals. The account holder will get only 2 free transactions per month. After that, the account holder must pay a transaction fee (10 Rs) for each additional

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
Account Management System
You have to implement a console-based account management system in this assignment. An
account management system is an application for maintaining a personal account in a bank.
Features of the system
An account management system needs to store information about Bank Accounts and
Customers.
This system supports two different types of accounts (Checking and Savings).
All customers have a name, address, and phone number. Each customer has their unique
account number and the bank will identify customers by only that account number.
. A customer may open both a savings account and a checking account. However, a customer
must not have more than one savings account or checking account.
All bank accounts must have the account number, balance, and date created.
• There are some features that are defined for all accounts, checkBalance(), printStatement(),
makeDeposit(), transfer Amount(), calculateZakat() and make Withdrawal() but the withdrawal
limit is different based on the account type. Savings account customers cannot withdraw
more than their balance but the checking account holders can withdraw more than their
account balance (up to a maximum of 5000 PKR).
- makeDeposit(): The Deposit Function will deposit the specified amount in the account.
amount will be deducted
-
.
make Withdrawal(): Withdraw function to withdraw an amount
checkBalance(): Display function to display name and balance.
printStatement(): show the complete details of the customer, account number, time of the
transaction, date of transaction, transaction amount, and remaining balance.
transferAmount(): The transfer method transfers the amount from one bank account to the
bank account selected by the user.
calculateZakat(): This function will calculate zakat annually. It should ensure that the
zakat will be calculated if the total balance is greater than or equal to 20,000. Zakat will
be calculated using this formula (TotalBalance*2.5)/100. Zakat is only calculated for
Savings accounts.
displayAllDeductions(): This function displays all deductions made along with their
details on the said account (e.g., Zakat for Savings and Tax for Checking).
Checking accounts have additional functionality that may have transaction fees for
deposits and withdrawals. The account holder will get only 2 free transactions per month.
After that, the account holder must pay a transaction fee (10 Rs) for each additional
transaction such as deposit and withdrawal. A record of all transaction fees should be
calculated.
Saving accounts have an additional attribute for interest rate and an operation for
calculatelnterest(). The interest rate remains the same for all accounts and can be
changed at runtime.
The console interface will allow the Admin (the only type of user) to
o Open a New Account, Close an account
Login to a specific account by providing the unique account number
Perform account operations as mentioned earlier
o
Specify the Interest Rate, applicable to all Saving Accounts
o Display all account details, including the bank owner details
o Display all accounts deductions along with account details
Transcribed Image Text:Account Management System You have to implement a console-based account management system in this assignment. An account management system is an application for maintaining a personal account in a bank. Features of the system An account management system needs to store information about Bank Accounts and Customers. This system supports two different types of accounts (Checking and Savings). All customers have a name, address, and phone number. Each customer has their unique account number and the bank will identify customers by only that account number. . A customer may open both a savings account and a checking account. However, a customer must not have more than one savings account or checking account. All bank accounts must have the account number, balance, and date created. • There are some features that are defined for all accounts, checkBalance(), printStatement(), makeDeposit(), transfer Amount(), calculateZakat() and make Withdrawal() but the withdrawal limit is different based on the account type. Savings account customers cannot withdraw more than their balance but the checking account holders can withdraw more than their account balance (up to a maximum of 5000 PKR). - makeDeposit(): The Deposit Function will deposit the specified amount in the account. amount will be deducted - . make Withdrawal(): Withdraw function to withdraw an amount checkBalance(): Display function to display name and balance. printStatement(): show the complete details of the customer, account number, time of the transaction, date of transaction, transaction amount, and remaining balance. transferAmount(): The transfer method transfers the amount from one bank account to the bank account selected by the user. calculateZakat(): This function will calculate zakat annually. It should ensure that the zakat will be calculated if the total balance is greater than or equal to 20,000. Zakat will be calculated using this formula (TotalBalance*2.5)/100. Zakat is only calculated for Savings accounts. displayAllDeductions(): This function displays all deductions made along with their details on the said account (e.g., Zakat for Savings and Tax for Checking). Checking accounts have additional functionality that may have transaction fees for deposits and withdrawals. The account holder will get only 2 free transactions per month. After that, the account holder must pay a transaction fee (10 Rs) for each additional transaction such as deposit and withdrawal. A record of all transaction fees should be calculated. Saving accounts have an additional attribute for interest rate and an operation for calculatelnterest(). The interest rate remains the same for all accounts and can be changed at runtime. The console interface will allow the Admin (the only type of user) to o Open a New Account, Close an account Login to a specific account by providing the unique account number Perform account operations as mentioned earlier o Specify the Interest Rate, applicable to all Saving Accounts o Display all account details, including the bank owner details o Display all accounts deductions along with account details
Develop a java program corresponding to the given case
study in the attached task. Please implement the following
concepts:
1) Inheritance
2) Polymorphism
3) Abstraction
3a) Abstract Classes
3b) Interface
4) Encapsulation
Transcribed Image Text:Develop a java program corresponding to the given case study in the attached task. Please implement the following concepts: 1) Inheritance 2) Polymorphism 3) Abstraction 3a) Abstract Classes 3b) Interface 4) Encapsulation
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Data members
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.
Similar questions
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