Consider the following Python class: class Dog:    def __ini…

Consider the following Python class: class Dog:    def __init__(self, name: str) -> None:        self._name = name    def bark(self):        print(“Woof!”) Which of the following code snippets correctly creates an object of the Dog class and calls its bark method?