Solved

You Have Created a ShoppingCart Class and a Fruit Class

Question 61

Multiple Choice

You have created a ShoppingCart class and a Fruit class. Which of the following will correctly declare an array list of Fruit objects in the ShoppingCart class?


A) public ShoppingCart
{
Private Fruit ArrayList fruits;
}
B) public ShoppingCart
{
Private ArrayList fruits;
}
C) public ShoppingCart
{
Private ArrayList<Fruit> fruits;
}
D) public ShoppingCart
{
Public ArrayList<Fruit> fruits;
}

Correct Answer:

verifed

Verified

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

Related Questions