Suppose we have list of type List. Which method allows you to pass a List and returns

Question:

Suppose we have list of type List. Which method allows you to pass a List and returns an immutable Set containing the same elements? 

A. List.copyOf(list)

B. List.of(list)

C. Set.copyOf(list);

D. Set.of(list);

E. None of the above

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: