Question: In order to subclass the Person class, what is one thing you must do?
- The subclass must be marked sealed
- You must override the `displayJob()` method
- You must mark the subclass as final
- An abstract class cannot be extended, so you must change it to open
Answer: The correct answer of the above question is Option B:You must override the `displayJob()` method