PCAP

Full exam simulation

1:05:00
1

Object-Oriented Programming

medium

Refer to the exhibit. What will be the output?

Exhibit

class MyClass:
    def __init__(self):
        self.__private = 10
obj = MyClass()
print(obj.__private)
0 of 90 answered