Exam PCAP-31-03 All QuestionsBrowse all questions from this exam
Question 20

A property that stores information about a given class’s super-classes is named:

    Correct Answer: A

    The property that stores information about a given class's super-classes in Python is called __bases__. This property is a tuple containing the base classes, in the order of their occurrence in the base class list.

Discussion
DKAT2023Option: A

A is correct

Dave304409Option: A

is correct