Question: In order to subclass the Person class, what is one thing you must do?

  1. The subclass must be marked sealed
  2. You must override the `displayJob()` method
  3. You must mark the subclass as final
  4. 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