Question: From the Supervisor subclass, how do you call the Employee class's display() method?

  1. `Employee.display() `
  2. `::display()`
  3. `super.display()`
  4. `override.display()`

Answer: The correct answer of the above question is Option C:`super.display()`