Which of the following statements is false? Question 16 options: A) With non-static interface methods, helper methods can now be declared directly in interfaces rather than in separate classes. B) Prior to Java SE 8, it was common to associate with an interface a class containing static helper methods for working with objects that implemented the interface. C) Collections method sort can sort objects of any class that implements interface List. D) Class Collections contains many static helper methods for working with objects that implement interfaces Collection, List, Set and more.

Respuesta :

Answer:

The best answer is "A"

Explanation:

With non-static interface methods, helper methods can now be declared directly in interfaces rather than in separate classes.

Lanuel

Answer:

A) With non-static interface methods, helper methods can now be declared directly in interfaces rather than in separate classes.

Explanation:

In Java programming language, it is false to say that with non-static interface methods, helper methods can now be declared directly in interfaces rather than in separate classes.