40.4k views
5 votes
Objects of the BankAccount class require a name (string) and a social security number (string) be specified (in that order) upon creation. Define an object named account, of type BankAccount, using the values "John Smith" and "123-45-6789" as the name and social security number respectively.

1 Answer

4 votes

Answer:

BankAccount account= new BankAccount("John Smith","123-45-6789");

Step-by-step explanation:

This is how to define an object of a class, in this case BankAccount. You call the class constructor which sets the value for it.

User Flyingzl
by
7.9k points