161k views
1 vote
Java provides a number of interfaces and classes to systematically implement collections.

a. True
b. False

1 Answer

2 votes

Answer:

A) True

Step-by-step explanation:

Java provides collections architecture or framework used to store and manipulate a group of objects or collections.

The collection framework has interfaces which include; Set, Queue, Deque, List, as well as classes which include; Hashset, ArrayList, LinkedList, LinkedHashset, PriorityQueue, Vector and TreeSet.

There are also many methods declared in the collection interface which include; add(), addAll(), remove(), removeAll(),retainAll(), clear(), size(), iterator(), toArray() etc

User Pirkil
by
4.6k points