Multiple choice technology programming languages

Give some examples of generic classes.

  1. List ,HashSet

  2. Queue

  3. Stack

  4. LinkedList

  5. All of Above

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

All the listed options (List, HashSet, Queue, Stack, LinkedList) are generic classes in C#. They are type-safe collections that can work with any data type specified at compile time. Generic classes improve code reusability and type safety by allowing you to define classes with type parameters.