Consider the following CashRegister class: class CashRegiste…

Consider the following CashRegister class: class CashRegister:    def __init__(self) -> None:        self.item_count = 0        self.total_price = 0.0    def add_item(self, item_price: float) -> None:        self.item_count += 1        self.total_price += item_price Now consider the following client code: reg1 = CashRegister()reg2 = reg1reg2.add_item(2.95) What are the values of reg1.item_count and reg1.total_price after the last line executes? Select all answers that are true.