Multiple choice technology programming languages

Which one of the following is not marker interface?

  1. Serializable

  2. Remote

  3. Cloneable

  4. List

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Marker interfaces have no methods and serve only to mark classes for special treatment by the JVM or compiler. Serializable, Remote, and Cloneable are marker interfaces, while List is a regular interface with multiple methods defining collection operations like add(), get(), and remove().