Multiple choice technology programming languages

which of the following is correct?

  1. java.util.Collection

  2. java.lang.Collection

  3. java.util.Collections

  4. java.lang.Collections

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Collection is in java.util package. java.lang is for core classes like String, Object. java.util.Collections (plural) is a utility class, not the Collection interface.