Question
class stud:
‘Base class for all students’
def __init__(self, roll_no, grade):
self.roll_no = roll_no
self.grade = grade
def display (self):
print("Roll no : ", self.roll_no, ", Grade: ", self.grade)
print(student.__doc__)
a.
Exception is thrown
b.
__main__
c.
Nothing is displayed
d.
Base class for all students
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 print(Test.__name__) display (assuming Test is the name of the class) ?
View solution
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?
View solution
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?
View solution
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!