Hi!folks
please answer this question
For what values of the <Collection> in the following code will the program when compiled and run give error. (Select three Correct Answers):
1. import java.util.*;
2.
3. class Q33{
4.
5. public static void main(
String[] args){
6.
7. <Collection> l = new <Collection>();
8.
9. l.add(null);
10. l.add(null);
11.
12. System.out.println(l.size());
13.
14. }
15.
16. }
a. HashSet
b. LinkedList
c. Hashtable
d. HashMap
e. TreeMap
f. Vector
g. TreeSet
h. ArrayList