Ask Question
16 August, 09:35

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.

+2
Answers (1)
  1. 16 August, 13:19
    0
    BankAccount account = new BankAccount ("John Smith","123-45-6789");

    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.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Objects of the BankAccount class require a name (string) and a social security number (string) be specified (in that order) upon creation. ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers