Question: Write the Code to define a class called BankAccount which can be used to store information for a single bank account. The BankAccount class contains
Write the Code to define a class called BankAccount which can be used to store information for a single bank account. The BankAccount class contains two classes, as described below. One class holds information about the depositor. i. the depositor's name, which consists of a first name (like "John") and a last name (like "Public") II. the depositor's Social Security number (e.g., 123-45-6789) The second class holds Information about the bank account itself: I. the account number (e.g., 987654) II. the account balance (e.g., 1234.56) Write a series of class definitions and combine them to create the BankAccount b. Declare an object called myAccount of class BankAccount class c. Assuming that all the components of the myAccount object have been given values, write code to do the following: Test to see if the account number is exactly 234567, if it is, add 250 dollars to the account balance, and then print the last name of the depositor. d. Write a declaration for an array of 100 objects of class BankAccount
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
