Multiple choice technology programming languages

Which of these are core interfaces in the collection framework. Select the one correct answer.

  1. Tree

  2. Stack

  3. Queue

  4. Array

  5. LinkedList

  6. Map

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

Map is a core interface in the Java Collections Framework that represents a mapping of keys to values. Tree, Stack, Queue, and LinkedList are implementation classes, not interfaces. Array is a language construct, not a Collections Framework interface.