Which of the following is a correct example of a Marker Interface?
interface Serializable { void serialize(); }
interface Cloneable {}
interface Marker { void mark(); }
interface Runnable { void run(); }
This question is part of this quiz :
Java Interface types and Comparator