Question: For the class Employee example provided in the tutorial, what code segment could be added as a method to return the number of employees managed
For the class Employee example provided in the tutorial, what code segment could be added as a method to return the number of employees managed if this was kept track in a variable called self.numManaged?
a
def getnumManaged:
return self.numManaged
b
def getnumManagedself:
return self.numManaged
c
def getnumManaged:
return numManaged
d
def getnumManagedself:
return numManaged
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
