Multiple choice technology programming languages which of these is false? a class implements one or more interfaces a class extends one or more interfaces an interface extends one of more interfaces Serializable is a marker Interface Reveal answer Fill a bubble to check yourself B Correct answer Explanation Classes IMPLEMENT interfaces, not extend them. Option B claims classes extend interfaces, which is false - you use 'implements' keyword for interfaces. Classes extend other classes, and interfaces extend other interfaces.