Which one of the following interfaces is empty (i.e., an interface that does not declare any methods)?
c)
From the documentation of clone()
method: "By convention, classes that implement this interface should override the Object.clone()
method.
Note that this interface does not contain the clone method."
option a) the AutoCloseable interface declares the close()
method.
option b) Callable declares call()
method.
option d) the Comparator<T> interface declares compare()
and equals()
methods.