Given: (Exhibit) Which two statements can be added at line 1 in Bar to successfully compile it? (Choose By Singh | January 7, 2023 0 Comment Given:Which two statements can be added at line 1 in Bar to successfully compile it? (Choose two.) A. public ArrayList<Integer> foo(Set<String> m) { … } B. public List<Integer> foo(TreeSet<String> m) { … } C. public List<Object> foo(Set<CharSequence> m) { … } D. public List<Integer> foo(Set<String> m) { … } E. public ArrayList<Number> foo(Set<CharSequence> m) { … } F. public List<Integer> foo(Set<CharSequence> m) { … } Correct Answer: B,E