Which statements are true about the following code?.
public class Main { public static void main(String[] args) { List legacyList = new ArrayList<Integer>(); // (1) List<?> anyList = legacyList; // (2) legacyList = anyList; // (3) } }
Select the one correct answer.
(e)
Any generic list can be assigned to a raw list reference.
A raw list and an unbounded wildcard list are assignment compatible.