adplus-dvertising
frame-decoration

Question

What is the output of the following piece of code?
class A:
    def __init__(self):
        self.__x = 1
class B(A):
    def display(self):
        print(self.__x)
def main():
    obj = B()
    obj.display()
main()

a.

1

b.

0

c.

Error, invalid syntax for object declaration

d.

Error, private class member can’t be accessed in a subclass

Answer: (d).Error, private class member can’t be accessed in a subclass

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the following piece of code?

Similar Questions

Discover Related MCQs

Q. What does built-in function help do in context of classes?

Q. Which of the following is not a type of inheritance?

Q. What does built-in function type do in context of classes?

Q. Suppose B is a subclass of A, to invoke the __init__ method in A from B, what is the line of code you should write?

Q. When defining a subclass in Python that is meant to serve as a subtype, the subtype Python keyword is used. Is the statement true or false?

Q. What does print(Test.__name__) display (assuming Test is the name of the class) ?

Q. __del__ method is used to destroy instances of a class. True or False?

Q. What is delattr(obj,name) used for?

Q. What is hasattr(obj,name) used for?

Q. What is Instantiation in terms of OOP terminology?

Q. Which of the following statements is true ?

Q. Which of the following statements is true ?

Q. Syntax errors are also known as parsing errors. Is this statement true or false?

Q. Which of the following is not a standard exception in Python?

Q. What happens when ‘1’ == 1 is executed?

Q. When is the finally block executed?

Q. Can one block of except statements handle multiple exception?

Q. When will the else part of try-except-else be executed?

Q. How many except statements can a try-except block have?

Q. Private members of a class cannot be accessed. True or False?