Solved

Consider the Following Code Snippet

Question 32

Multiple Choice

Consider the following code snippet:
public static void reverse(List <? extends E> list) { ...}
Which of the following statements about this code is correct?


A) This code is illegal.
B) This is an example of an unbounded wildcard.
C) This is an example of a wildcard with an upper bound.
D) This is an example of a wildcard with a lower bound.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions