Question
class A:
def __init__(self, x= 1):
self.x = x
class der(A):
def __init__(self,y = 2):
super().__init__()
self.y = y
def main():
obj = der()
print(obj.x, obj.y)
main()
a.
Error, the syntax of the invoking method is wrong
b.
The program runs fine but nothing is printed
c.
1 0
d.
1 2
Posted under Python
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 type do in context of classes?
View solution
Q. Which of the following is not a type of inheritance?
View solution
Q. What does built-in function help do in context of classes?
View solution
Q. Overriding means changing behaviour of methods of derived class methods in the base class. Is the statement true or false?
View solution
Q. Which of the following statements is true?
View solution
Q. The purpose of name mangling is to avoid unintentional access of private class members. True or False?
View solution
Q. Which of the following is false about protected class members?
View solution
Q. Which of the following is not an exception handling keyword in Python?
View solution
Q. An exception is:
View solution
Q. _______________________ exceptions are raised as a result of an error in opening a particular file.
View solution
Q. Which of the following blocks will be executed whether an exception is thrown or not?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Python? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!