adplus-dvertising
frame-decoration

Question

What is the output of the following code?
class change:
    def __init__(self, x, y, z):
        self.a = x + y + z
 
x = change(1,2,3)
y = getattr(x, 'a')
setattr(x, 'a', y+1)
print(x.a)

a.

6

b.

7

c.

Error

d.

0

Answer: (b).7

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 code?

Similar Questions

Discover Related MCQs

Q. The assignment of more than one function to a particular operator is _______

Q. Which of the following is not a class method?

Q. Which piece of code creates an empty class?

Q. What are the methods which begin and end with two underscore characters called?

Q. Special methods need to be explicitly called during object creation. True or False?

Q. Which of the following best describes inheritance?

Q. Which of the following statements is wrong about inheritance?

Q. All subclasses are a subtype in object-oriented programming. Is the statement true or false?

Q. What does single-level inheritance mean?

Q. Which of the following statements isn’t true?

Q. Method issubclass() checks if a class is a subclass of another class. True or False?

Q. Which of the following best describes polymorphism?

Q. What is the biggest reason for the use of polymorphism?

Q. What is the use of duck typing?

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?