Question: class Person: def speak ( self ) : print ( Hi ) class Salesman ( Person ) : def speak ( self )

class Person:
def speak(self):
print("Hi")
class Salesman(Person):
def speak(self):
print("Buy something")
class Professor(Person):
def speak(self):
print('Learn something')
class Chef(Person):
def speak(self):
print('Eat something')
Based on the above code, which of the following is correct?
Question 6 options:
A Person is a Professor
A Chef is a Professor
A Person is a Salesman
None of these

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!