Given: (Exhibit) Which two statements are true if the method is added to Bar? (Choose two.)
Given:Which two statements are true if the method is added to Bar? (Choose two.) A. public Collection<String> foo(Collection<String> arg) { … } overrides Foo.foo. B. public <T> Collection<T> foo(Collection<T> arg) { … } overloads Foo.foo. C. public <T> List<T> foo(Collection<T> arg) { … } overrides Foo.foo. D. public <T> Iterable<T> foo(Collection<T> arg) { … } overrides Foo.foo. E.… Read More »