PHP - Inheritance and Polymorphism
Consider an abstract class
Processor with an abstract method process(). You want to create a subclass DataProcessor that implements process() and also adds a new method validate(). Which statement is true?