If a non-abstract class X inherits abstract methods from its abstract parent class Y, is the X class required to implement the inherited abstract methods?
a) Yes, it is required to implement all inherited abstract methods.
b) No, it is not required to implement inherited abstract methods if X is non-abstract.
c) It depends on the access modifiers of the abstract methods in class Y.
d) Only if class X intends to be instantiated.