Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Recall & Review
beginner
What is the purpose of the super() function in Python?
The <code>super()</code> function is used to call a method from a parent class. It helps to reuse code from the parent class inside a child class.
Click to reveal answer
beginner
How do you use <code>super()</code> to call the parent class constructor?
Inside the child class constructor, you call <code>super().__init__()</code> to run the parent class constructor and initialize the parent part of the object.
Click to reveal answer
intermediate
What happens if you don't use <code>super()</code> in a child class constructor?
If you don't call <code>super()</code>, the parent class constructor won't run automatically. This can cause missing initialization and errors.
Click to reveal answer
intermediate
Can super() be used to call methods other than the constructor?
Yes, super() can call any method from the parent class, not just the constructor. This helps extend or modify behavior while reusing code.
Click to reveal answer
advanced
What is the difference between <code>super()</code> and directly calling the parent class method?
Using <code>super()</code> is safer and more flexible, especially with multiple inheritance. Direct calls to the parent class can skip other classes in the inheritance chain.
Click to reveal answer
What does super() do in a child class?
ACreates a new object
BCalls a method from the parent class
CDeletes the parent class
DOverrides the child class method
✗ Incorrect
super() is used to call methods from the parent class inside a child class.
How do you call the parent class constructor using super()?
Asuper().__init__()
Bsuper().constructor()
Cparent.__init__()
Dsuper().parent()
✗ Incorrect
The correct syntax to call the parent constructor is super().__init__().
What happens if you forget to call super() in a child constructor?
ANothing happens, it is optional
BChild constructor will not run
CPython throws a syntax error
DParent constructor is not called, possibly causing errors
✗ Incorrect
If super() is not called, the parent constructor is skipped, which can cause missing setup.
Can super() call methods other than __init__?
AOnly static methods can be called
BNo, only <code>__init__</code> can be called
CYes, any parent class method can be called
DOnly private methods can be called
✗ Incorrect
super() can call any method from the parent class, not just the constructor.
Why is super() preferred over direct parent class method calls?
AIt supports multiple inheritance and is more flexible
BIt runs faster
CIt uses less memory
DIt disables child class methods
✗ Incorrect
super() respects the method resolution order, making it better for multiple inheritance.
Explain how and why you use the super() function in a child class constructor.
Think about how to make sure the parent class sets up its part of the object.
You got /3 concepts.
Describe the benefits of using super() instead of directly calling the parent class methods.
Consider what happens when there are multiple parent classes.
You got /3 concepts.
Practice
(1/5)
1. What is the main purpose of using super() in a child class?
easy
A. To call a method from the parent class
B. To create a new instance of the child class
C. To delete the parent class
D. To override the child class method completely
Solution
Step 1: Understand what super() does
super() is used to access methods from the parent class inside a child class.
Step 2: Identify the correct purpose
Calling a parent class method helps reuse code and extend functionality.
Final Answer:
To call a method from the parent class -> Option A
Quick Check:
super() calls parent method = A [OK]
Hint: Remember: super() means 'call parent method' [OK]
Common Mistakes:
Thinking super() creates new objects
Believing super() deletes classes
Assuming super() overrides child methods fully
2. Which of the following is the correct syntax to call a parent class method greet inside a child class method using super()?
easy
A. super().greet()
B. super->greet()
C. super[greet]()
D. super.greet()
Solution
Step 1: Recall the syntax of super()
The correct way to call a parent method is using super() followed by dot and method name.
Step 2: Match the correct option
Only super().greet() uses the right parentheses and dot notation.
Final Answer:
super().greet() -> Option A
Quick Check:
Use parentheses with super() = D [OK]
Hint: super() always needs parentheses before method call [OK]
Common Mistakes:
Omitting parentheses after super
Using square brackets instead of parentheses
Using arrow notation which is invalid in Python
3. What will be the output of this code?
class Parent:
def greet(self):
return "Hello from Parent"
class Child(Parent):
def greet(self):
return super().greet() + " and Child"
c = Child()
print(c.greet())
medium
A. Hello from Parent
B. Hello from Child
C. Hello from Parent and Child
D. Error: super() not used correctly
Solution
Step 1: Understand method calls in Child.greet()
Child's greet calls super().greet() which runs Parent's greet returning Hello from Parent.
Step 2: Combine returned strings
Child's greet adds and Child to the parent's string, so final output is Hello from Parent and Child.
Final Answer:
Hello from Parent and Child -> Option C
Quick Check:
super() calls parent method + extra text = A [OK]
Hint: super() returns parent result; child can add more [OK]
Common Mistakes:
Expecting only parent's message without child addition
Thinking super() causes error here
Ignoring the string concatenation
4. Find the error in this code using super():
class Base:
def show(self):
print("Base show")
class Derived(Base):
def show(self):
super.show()
print("Derived show")
d = Derived()
d.show()
medium
A. Derived class should not override show()
B. Base class method show() is missing
C. print statements are incorrect
D. super.show() should be super().show()
Solution
Step 1: Identify how super() is called
The code uses super.show() which is invalid syntax; super must be called as a function.
Step 2: Correct the syntax
It should be super().show() to properly call the parent method.
Final Answer:
super.show() should be super().show() -> Option D
Quick Check:
super() needs parentheses before method = C [OK]
Hint: Always use super() with parentheses before method call [OK]
Common Mistakes:
Calling super without parentheses
Thinking parent method is missing
Believing overriding is not allowed
5. You want to extend a parent class __init__ method to add a new attribute in the child class. Which code correctly uses super() to do this?
class Animal:
def __init__(self, name):
self.name = name
class Dog(Animal):
def __init__(self, name, breed):
???
self.breed = breed
Choose the correct replacement for ???.
hard
A. super(Dog, self).__init__(breed)
B. super().__init__(name)
C. Animal.__init__(self, breed)
D. super().__init__(breed)
Solution
Step 1: Understand parent __init__ parameters
Animal's __init__ takes name, so we must pass name to it.
Step 2: Use super() correctly in child __init__
Calling super().__init__(name) runs Animal's __init__ properly, then child adds breed.
Final Answer:
super().__init__(name) -> Option B
Quick Check:
super() calls parent with correct args = B [OK]
Hint: Pass parent's expected args to super().__init__() [OK]