Correct answer is : D
Subclasses cannot access the private memebers of superclasses.. the __x actually converted to _B__x.
This will print
Traceback (most recent call last):
File "C:/pythoneasy/test1.py", line 15, in <module>
obj.printme()
File "C:/pythoneasy/test1.py", line 11, in printme
print(self.__x)
AttributeError: 'B' object has no attribute '_B__x'
Comment here: