Question:You need to create a collection to act as a shopping cart. The collection will store multiple instances of your custom class, ShoppingCartItem. You need to be able to sort the items according to price and time added to the shopping cart (both properties of the ShoppingCartItem). Which class should you use for the shopping cart? - VB.NET
A Queue
B ArrayList
C Stack
D StringCollection
+ AnswerB
+ Report