Multiple choice technology programming languages

SortedSet can implement

  1. set

  2. ConcurrentSkipListSet

  3. Hashmap

  4. Queue

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

SortedSet is an interface in Java. ConcurrentSkipListSet is a concrete class that implements the SortedSet interface, providing a thread-safe sorted set implementation based on a skip list data structure. HashMap and Queue are unrelated to SortedSet implementation.