What is the purpose of a default value in a constructor parameter?
ATo make the constructor private
BTo provide a value if no argument is passed
CTo force the user to pass a value
DTo delete the parameter
✗ Incorrect
Default values provide a fallback value when no argument is given during object creation.
How do you define a default value for a parameter in Python's __init__ method?
Adef __init__(self, param=default):
Bdef __init__(self, param): param = default
Cdef __init__(self, param): return default
Ddef __init__(self, param?=default):
✗ Incorrect
You assign the default value directly in the parameter list.
What will print(p.name) output if p = Person() and def __init__(self, name='Guest')?
AError
BNone
CGuest
DEmpty string
✗ Incorrect
Since no name is passed, the default 'Guest' is used.
Can you have multiple parameters with default values in a constructor?
ADefaults are not allowed in constructors
BNo, only one parameter can have a default
COnly the first parameter can have a default
DYes, all can have defaults
✗ Incorrect
You can assign default values to as many parameters as you want.
What happens if you call Person('Bob') when def __init__(self, name='Guest')?
AThe name 'Bob' is used instead of the default
BThe default 'Guest' is used anyway
CAn error occurs
DThe constructor ignores the argument
✗ Incorrect
The passed argument overrides the default value.
Explain how default values in constructors help when creating objects.
Think about what happens if you don't pass some values when making an object.
You got /4 concepts.
Write a simple Python class with a constructor that has two parameters, one with a default value.
Use <code>def __init__(self, param1, param2=default):</code> format.
You got /4 concepts.
Practice
(1/5)
1. What is the main purpose of using default values in a Python class constructor (__init__ method)?
easy
A. To prevent the class from being instantiated
B. To make the constructor run faster
C. To allow creating objects without providing all arguments
D. To force the user to always provide all arguments
Solution
Step 1: Understand default values in constructors
Default values let you set a value for a parameter if no argument is given when creating an object.
Step 2: Identify the effect on object creation
This means you can create an object without giving all arguments, and the defaults fill in the missing ones.
Final Answer:
To allow creating objects without providing all arguments -> Option C
Quick Check:
Default values = optional arguments [OK]
Hint: Defaults let you skip arguments when creating objects [OK]
Common Mistakes:
Thinking defaults speed up the constructor
Believing defaults prevent object creation
Assuming defaults force all arguments
2. Which of the following is the correct way to set a default value for the parameter age in a Python class constructor?
easy
A. def __init__(self, age:30):
B. def __init__(self, age): age=30
C. def __init__(self, age): age == 30
D. def __init__(self, age=30):
Solution
Step 1: Recall Python syntax for default parameters
Default values are set by assigning a value in the parameter list, like age=30.
Step 2: Check each option
def __init__(self, age=30): uses correct syntax. def __init__(self, age): age=30 tries to assign inside the method header, which is invalid. def __init__(self, age): age == 30 uses comparison operator instead of assignment. def __init__(self, age:30): uses incorrect type hint syntax.
Final Answer:
def __init__(self, age=30): -> Option D
Quick Check:
Default parameter = param=value [OK]
Hint: Default values go in the parameter list with = [OK]
Common Mistakes:
Assigning default inside the method body
Using == instead of = for defaults
Confusing type hints with default values
3. What will be the output of this code?
class Person:
def __init__(self, name, age=25):
self.name = name
self.age = age
p = Person('Alice')
print(p.name, p.age)
medium
A. Alice 25
B. Alice None
C. Alice 0
D. Error: missing argument for age
Solution
Step 1: Analyze the constructor parameters
The constructor has age=25 as a default, so if age is not given, it uses 25.
Step 2: Check object creation and print
We create p = Person('Alice') without age, so age is 25. Printing p.name and p.age shows 'Alice 25'.
Final Answer:
Alice 25 -> Option A
Quick Check:
Missing argument uses default [OK]
Hint: Missing argument uses default value [OK]
Common Mistakes:
Expecting error when argument is missing
Assuming default is None if not given
Confusing default with zero or empty string
4. Find the error in this class constructor:
class Car:
def __init__(self, model='Sedan', year):
self.model = model
self.year = year
medium
A. Missing return statement in __init__
B. Default parameter must come after non-default parameters
C. self is missing in parameters
D. Cannot assign to self attributes in constructor
Solution
Step 1: Check parameter order in constructor
In Python, parameters with default values must come after parameters without defaults.
Step 2: Identify the error in parameter order
Here, model='Sedan' is a default parameter before year which has no default. This causes a syntax error.
Final Answer:
Default parameter must come after non-default parameters -> Option B
Quick Check:
Default params last in list [OK]
Hint: Put all default parameters after non-default ones [OK]
Common Mistakes:
Placing default parameters before required ones
Thinking __init__ needs return
Forgetting self parameter
5. You want to create a class Book where the author defaults to 'Unknown' and pages defaults to 100 if not provided. Which constructor is correct?