adplus-dvertising
frame-decoration

Question

What is the output of the following piece of code?
class Demo:
    def __init__(self):
        self.x = 1
    def change(self):
        self.x = 10
class Demo_derived(Demo):
    def change(self):
        self.x=self.x+1
        return self.x
def main():
    obj = Demo_derived()
    print(obj.change())
 
main()

a.

11

b.

2

c.

1

d.

An exception is thrown

Answer: (d).An exception is thrown

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. A class in which one or more methods are only implemented to raise an exception is called an abstract class. True or False?

Q. Which of these is not a fundamental features of OOP?

Q. Which of the following is the most suitable definition for encapsulation?

Q. Methods of a class that provide access to private members of the class are called as ______ and ______

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

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

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

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

Q. When is the finally block executed?

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

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

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

Q. Which of the following statements is true ?

Q. Which of the following statements is true ?

Q. What is Instantiation in terms of OOP terminology?

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

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

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

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

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?