A program imports from the standard Java library:
import java.util.*;
Hence, which of the following can compile?

(a) Set x = new Set();
(b) Set x = new LinkedList();
(c) LinkedList x = new LinkedList();
(d) LinkedList x = new Set();
(e) Set x = new Object[3];

Select all correct answers.