In the following code, Which of the following is a private d…
In the following code, Which of the following is a private data field? def A: def __init__(self): __a = 1 self.__b = 1 self.__c__ = 1 __d__ = 1 # Other methods omitted
In the following code, Which of the following is a private d…