When a class implements an interface in Java, it must provide concrete implementations for ALL methods declared in that interface (unless the class is declared abstract). This is a contract - the interface promises certain behaviors, and the implementing class must deliver them. Option A is incorrect because it's not limited to just two methods - it's all methods.