In the following code,
 def A:

Loading

Choose the correct option.

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

A. __a
B. __b
C. __c__
D. __d__

Leave a Comment