Which of these type parameters is used for a generic class to return and accept any type of object?

a) K
b) N
c) T
d) V

1 thought on “Which of these type parameters is used for a generic class to return and accept any type of object?”

  1. c
    Explanation: 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.

Leave a Comment