-
Which of these type parameters is used for a generic class to return and accept any type of object?
-
- K
- T
- V
- N
- None of these
Correct Option: B
T is used for type, A type variable can be any non-primitive type you specify: any class type, any interface type, any array type, or even another type variable.