Question 14
Given the following class definition
class Car:
def __init__(self, maker, model):
self._maker = maker
self._model = model
Which of the following is a correct statement for creating an object of the Car class?
car = Car()
car = Car("Toyota")
car = Car('RV-4')
car = Car('Toyota', 'RV-4')
10 pts