22.
What is the difference between a class variable and an instance variable in Python?

30.
What is the output of the following code:
class Parent:
def show(self):
print('Parent method')
class Child(Parent):
pass
obj = Child()
obj.show()