Question: Design an application that declares two CheckingAccount objects and sets and displays their values. Write the pseudocode that defines the class from the class diagram
Design an application that declares two CheckingAccount objects and sets and displays their values. Write the pseudocode that defines the class from the class diagram & previous information provided by filling in the blanks.
Pseudocode:
start
Declarations
CheckingAccount account1
CheckingAccount account2
account1 = getAccountData()
account2 = getAccountNum()
display(account1)
----------(----------)
stop
CheckingAccount get---------- ()
Declarations
---------- account
string name
numaccountNum
num ----------
output “Enter your name ”
input name
output “Enter account number ”
input number
output “Enter balance ”
input balance
account.setName(name)
-------.---------(------)
------.------ (------)
return account
void display(------------)
output “-------- ----- -----”
------.------()
return
Class Diagram
| CheckingAccount |
| -accountNum: num -name: string -balance: num |
| +setAccountNum(number : num) : void +setName(name : string) : void +setBalance(bal : num) : void +displayValues() : void |
Step by Step Solution
3.44 Rating (157 Votes )
There are 3 Steps involved in it
To design an application using the provided information and pseudocode we need to fill out the missing parts based on the class diagram Lets break it ... View full answer
Get step-by-step solutions from verified subject matter experts
