Interview questions
Question 75 of 253
FreeWhat is the difference between Collection and Collections in Java?
Collections
Collection (singular) is the root interface of the framework representing a group of objects (parent of List, Set, Queue). Collections (plural) is a utility class full of static helper methods — sort(), reverse(), synchronizedList(), unmodifiableList() — that operate on Collection objects.
Beginner3 min

