Question: Q1 (60 points) An Account class was specified in Programming Assignment 1 Design a new Account class as follows: .Add a new data field name

Q1 (60 points) An Account class was specified in Programming Assignment 1 Design a new Account class as follows: .Add a new data field name of the String type to store the name of the customer .Add a new constructor that constructs an account with the specified name, id, and balance. *Add a new data field named transactions whose type is Aravtist that stores the transaction for the accounts, Each transaction is an instance of the Transaction class. The Transaction class is defined as shown in Figure The getter and setter methods for these data fields are provided in the class, but omitted in the UML diagram for brevity Transaction -date: java.util.Date The date of this transaction type: char The type of the transaction, such as W" for withdrawal, 'D amount: double -balance: double -description: String +Transaction(type: char, for deposit The amoant of the transaction The new balance after this transaction. The description of this transaction. Construct a Transaction with the specified date, type, amount: double, balance: double, description: String) balance, and description *Modify the withdraw and deposit methods to add a transaction to the transactions array list. * All other properties and methods are the same as in Programming Assignment 1 write a test program that creates an Account with annual interest rate I ,5%, balance 1000, id 1122, and name George. Deposit S30, S40, and $50 to the account and withdraw S5, S4, and S2 from the account. Print an account summary that shows account holder name, interest rate, balance, and all transactions. Q1 (60 points) An Account class was specified in Programming Assignment 1 Design a new Account class as follows: .Add a new data field name of the String type to store the name of the customer .Add a new constructor that constructs an account with the specified name, id, and balance. *Add a new data field named transactions whose type is Aravtist that stores the transaction for the accounts, Each transaction is an instance of the Transaction class. The Transaction class is defined as shown in Figure The getter and setter methods for these data fields are provided in the class, but omitted in the UML diagram for brevity Transaction -date: java.util.Date The date of this transaction type: char The type of the transaction, such as W" for withdrawal, 'D amount: double -balance: double -description: String +Transaction(type: char, for deposit The amoant of the transaction The new balance after this transaction. The description of this transaction. Construct a Transaction with the specified date, type, amount: double, balance: double, description: String) balance, and description *Modify the withdraw and deposit methods to add a transaction to the transactions array list. * All other properties and methods are the same as in Programming Assignment 1 write a test program that creates an Account with annual interest rate I ,5%, balance 1000, id 1122, and name George. Deposit S30, S40, and $50 to the account and withdraw S5, S4, and S2 from the account. Print an account summary that shows account holder name, interest rate, balance, and all transactions
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
