For the code below, what are the overridden method(s) (check…
For the code below, what are the overridden method(s) (check all that apply)?: class Employee (object): def __init__(self, name, email): self.name = name self.email = email def chgEmail (self, newEmail): self.email = newEmail + ‘.com’ return True class Manager (Employee): def __init__(self, name, email, salary): super().__init__(name, email) self.salary = salary def chgEmail(self, newEmail): self.email = newEmail class Worker (Employee): def __init__(self, name, email, hourly): super().__init__(name, email) self.hourly = hourly # executable code that follows the code above: e1 = Employee (‘John Miller’, ‘jMiller@gmail.com’) e2 = Employee (‘Jane Bradley’, ‘jbradley@tesla.com’) w1 = Worker (‘Karina Schmidt’, ‘kschmidt@tesla’, 18.50) w2 = Worker (‘Juan MacMaster’, ‘jmacmaster@gmail.com’, ‘17.25’) m1 = Manager (‘Elon Musk’, ’emusk@tesla.com’, 650000) m2 = Manager (‘Erica Contreras’, ‘econtreras@gmail.com’, 110000)