Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

JAVA Program Create a class named BankAccount , containing: a constructor accepting a String corresponding to the name of the account holder. a method ,

JAVA Program

Create a class named BankAccount, containing:

  • a constructor accepting a String corresponding to the name of the account holder.
  • a method, getBalance, that returns a double corresponding to the account balance.
  • a method withdraw that accepts a double, and deducts the amount from the account balance.

Write a class definition for a subclass, CheckingAccount, that contains:

  • a boolean instance variable, overdraft. (Having overdraft for a checking account allows one to write checks larger than the current balance).
  • a constructor that accepts a String and a boolean. The String parameter is used in the invocation of the superclass (BankAccount) constructor, while the boolean is used to initialize the overdraft instance variable.
  • a method, hasOverdraft, that returns a boolean. hasOverdraft returns true if the account supports overdraft.
  • a method, clearCheck, that accepts a double and returns a boolean. clearCheck will determine if the amount (of the check) can be cashed-- this will be the case if the amount is less than the balance in the account, or if the account allows overdraft. If the check can be cashed, clearCheck returns true, and also calls the withdraw method to update the account balance; otherwise, clearCheck returns false.

In the main method, create an object of type CheckingAccount, accepts input from the user to fill the information, and call all the methods of this object.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Put Your Data To Work 52 Tips And Techniques For Effectively Managing Your Database

Authors: Wes Trochlil

1st Edition

0880343079, 978-0880343077

More Books

Students also viewed these Databases questions

Question

What is the most important part of any HCM Project Map and why?

Answered: 1 week ago