This was already done but I am not seeing: The transfers between accounts, and can you tell me What are the two programm

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

This was already done but I am not seeing: The transfers between accounts, and can you tell me What are the two programm

Post by answerhappygod »

This was already done but I am not seeing:
The transfers between accounts, and can you tell me
What are the two programming techniques used in solving theproblem, supported with evidence?
What alternate programming techniques could be used to solvethis problem?
Description of the program's input and output screen. Also, I amnot seeing where to transfer the money between accounts.
Using principles of the object-oriented programming paradigm,you are required to implement a computer program which simulatesperforming banking transactions for Jane Doe at the “ InternationalBank”. Use the C++ programming language to create a menu-drivenprogram that allows it user to: 1st. Login. The user must entertheir main savings account number and the PIN (as given in thescenario). If either inputs are incorrect your application mustdisplay an appropriate error message, and then allow the user tore-enter the inputs or quit the application. However, if the useris successfully authenticated, your application will display itsmain menu as follow: 2nd. Create an account. Upon selecting thisoption, your C++ application will prompt the user to select andenter data for the type of account they wish to create. Note: Your solution to this task must demonstrate the concept ofinheritance. Specifically, you are to create a base class calledAccount. Your Account class will have:  Data members to store: adistinct account number, an account type (either savings orchecking); the amount of monies in the account; the name of theprimary account holder; the name of a joint account holder (storinga value is optional); and, an account transfer status (which storesthe status false if monies in the account is less than $10,000;otherwise, the status is true). Note that the account transferstatus indicates if a user is allowed to perform transfers thatdebits monies from the account.  Member functions must beimplemented to access and modify each data member of the Accountclass  You are to implement separate derived classes for PersonalLoan Account and Savings Account – both classes must inherit fromyour Account class, and have specializations as follow: SavingsAccount:  Data member to store: the last three details oftransactions performed on the account. A transaction detail storesthe transaction type (either debit or credit) and the amount ofmonies that was debited from, or credited to, the account.  Memberfunctions must be implemented to access and modify the data memberof the Savings Account class. An appropriate member function mustalso be implemented to accept a value, k (where k ≥ 5000), and theninitialize the amount of monies in the account to k. Personal LoanAccount:  Data member to store: an existing saving account number(that is, each personal loan account must be associated with asavings account); the loan amount (this is valued at $1,000 ×amount of monies in the savings account); interest rate, r (where10% ≥ r ≥ 5.5%); and, the monthly payment (0.75% of the loanamount).  Member functions must be implemented to access andmodify the data members of the Personal Loan Account class. 3rd.Transfer monies between accounts. Upon selecting this option, yourC++ application will prompt the user to select an account totransfer from and also select an account to transfer to. You willalso prompt the user for a value, m (where m ≥ 0), and then updatethe monies in each accounts appropriately. A user is only allowedto transfer monies between savings accounts, and from savingsaccount to loan accounts; transfers between loan accounts arerestricted.
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply