Solved

You Have Created a Coin Class and a Purse Class

Question 72

Multiple Choice

You have created a Coin class and a Purse class. Which of the following will correctly allow the Purse class to collect Coin objects?


A) public Purse
{
Private Coin ArrayList coins;
}
B) public Purse
{
Private ArrayList coins;
}
C) public Purse
{
Private ArrayList<Coin> coins;
}
D) public Purse
{
Public ArrayList<Coin> coins;
}

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions