Which declaration will cause an error?
I List<String> stringList = new ArrayList<String>();
II List<int> intList = new ArrayList<int>();
III ArrayList<String> compList = new ArrayList<String>();
(A) I only
(B) II only
(C) III only
(D) I and III only
(E) II and III only